Be the first user to complete this post
|
Add to List |
FileSystemObject : GetExtensionName Method
Description:
Returns extension of a file, return empty string if file doesn’t exist.
Format :
objectOfFileSystemObject. GetExtensionName(filepath)
- objectOfFileSystemObject : As the names says, it’s a FileSystemObject.
Arguments:
- filepath
- Mandatory
- Type: String
- filepath , whose extension to be return.
Function FnGetExtensionName (strFilePath) Set fso = CreateObject("Scripting.FileSystemObject") strFileExtension = fso. GetExtensionName (strFilePath) FnGetExtensionName = strFileExtension End Function
Msgbox FnGetExtensionName ("c:\NewFolder\file.txt")
Also Read:
- FileSystemObject : CreateFolder Method
- FileSystemObject : FolderExists Method
- FileSystemObject : GetDriveName Method
- FileSystemObject : MoveFile Method
- FileSystemObject : GetFileVersion Method