Be the first user to complete this post
|
Add to List |
FileSystemObject : GetFileVersion Method
Description:
Returns the version number of a specified file.
Format :
objectOfFileSystemObject. GetFileVersion (filespec)
objectOfFileSystemObject : As the name says, it’s a FileSystemObject.
Arguments:
- filespec
- Mandatory
- Type: String
- Specific file path
Function FnGetFileVersion(strSpecificFilePath) Set fso = CreateObject("Scripting.FileSystemObject") file = fso.GetFileVersion(strSpecificFilePath) FnGetFileVersion = file End Function
Msgbox FnGetFileVersion ("c:\New Folder\file.txt")
Also Read:
- FileSystemObject : GetDriveName Method
- FileSystemObject : DeleteFile Method
- FileSystemObject : CreateFolder Method
- FileSystemObject : FileExists Method