| Be the first user to complete this post  | Add to List | 
FileSystemObject : GetFile Method
Description:
Returns a file object corresponding to the file in a specified path.
Format :
objectOfFileSystemObject.GetFile(filespec)
objectOfFileSystemObject: As the name says, it’s a FileSystemObject.
Arguments:
- filespec
- Mandatory
- Type: String
- Specific file path
 
Function FnGetFile(strSpecificFilePath)
    Set fso = CreateObject("Scripting.FileSystemObject")
    Set file = fso.GetFile(strSpecificFilePath)
   s = file.Path & "<br>"
   s = s & "Created: " & file.DateCreated & "<br>"
   s = s & "Last Accessed: " & file.DateLastAccessed & "<br>"
   s = s & "Last Modified: " & file.DateLastModified  
End Function
Call FnGetFile ("c:\New Folder\file.txt")
Also Read:
- FileSystemObject : GetFolder Method
- FileSystemObject : FolderExists Method
- FileSystemObject : GetExtensionName Method
- FileSystemObject : GetFileVersion Method
- Excel-VBA : Insert Multiple Images from a Folder to Excel Cells
 
    