Returns the version number of a specified file.
object.GetFileVersion(pathspec)
The GetFileVersion method returns a zero-length string ("") if pathspec does not end with the named component.
Note The GetFileVersion method works only on the provided path string. It does not attempt to resolve the path, nor does it check for the existence of the specified path.
The following example illustrates the use of the GetFileVersion method.
[JScript] function ShowFileName(filespec){ var fso, s = ""; fso = new ActiveXObject("Scripting.FileSystemObject"); s +=fso.GetFileVersion(filespec); return(s); } [VBScript] Function GetVersion(DriveSpec) Dim fso, temp Set fso = CreateObject("Scripting.FileSystemObject") temp =fso.GetFileVersion(pathspec)If Len(temp) ThenGetVersion = tempElse GetVersion = "No version information available."End IfEnd Function
GetAbsolutePathName Method | GetBaseName Method | GetDrive Method | GetDriveName Method | GetExtensionName Method | GetFile Method | GetFileName Method | GetFolder Method | GetParentFolderName Method | GetSpecialFolder Method | GetTempName Method
Applies To: FileSystemObject Object