Be the first user to complete this post
|
Add to List |
FileSystemObject : DriveExists Method
Description:
Returns True if a specified drive exists; False if it does not.
Format :
objectOfFileSystemObject. DriveExists(DriveName)
- objectOfFileSystemObject : As the names says, it’s a FileSystemObject.
Arguments:
- fileName
- Mandatory
- Type: String
- Drive name , whose existence to be determined.
Function FnIsDriveExist(strDriveName) Set fso = CreateObject("Scripting.FileSystemObject") If fso. DriveExists(strDriveName)Then strStatus = strDriveName & “ drive exists” Else strStatus = strDriveName & “ drive does not exist” End If FnIsDriveExist = strStatus End Function
Msgbox FnIsDriveExist ("c")
Also Read:
- FileSystemObject : FileExists Method
- FileSystemObject : DeleteFile Method
- FileSystemObject in Excel Macro
- FileSystemObject : CreateTextFile Method
- VBA-Excel: Add/Insert multiple objects from a folder in an Excel Document.