Be the first user to complete this post
|
Add to List |
FileSystemObject : GetDriveName Method
Description:
Returns drive name, corresponding to the file name.
Format :
objectOfFileSystemObject. GetDriveName(filepath)
- objectOfFileSystemObject : As the names says, it’s a FileSystemObject.
Arguments:
- filepath
- Mandatory
- Type: String
- filepath , whose parent drive to be return.
Function FnGetDriveName (strFilePath) Set fso = CreateObject("Scripting.FileSystemObject") strDriveName = fso. GetAName (strFilePath) FnGetDriveName = strDriveName End Function
Msgbox FnGetDriveName ("c:\NewFolder\file.txt")
Output : C
Also Read:
- FileSystemObject : MoveFile Method
- FileSystemObject : MoveFolder Method
- FileSystemObject : CopyFile Method
- FileSystemObject : CopyFolder Method