Be the first user to complete this post

  • 0
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:

  1. FileSystemObject : CreateTextFile Method
  2. FileSystemObject : CreateFolder Method
  3. FileSystemObject:OpenTextFile Method
  4. FileSystemObject : GetFolder Method
  5. FileSystemObject : FolderExists Method