如果指定的驱动器存在则返回 True ;如果不存在则返回 False。
object.DriveExists(drivespec)
对于可移动媒体的驱动器, 即使没有媒体 DriveExists 方法也返回 true。可以使用 Drive 对象的 IsReady 属性来决定驱动器是否就绪。
下面的例子说明了 DriveExists 方法的用法。
[JScript] function ReportDriveStatus(drv) { var fso, s = ""; fso = new ActiveXObject("Scripting.FileSystemObject"); if (fso.DriveExists(drv)) s += "Drive " + drv + " exists."; else s += "Drive " + drv + " doesn't exist."; return(s); } [VBScript] Function ReportDriveStatus(drv) Dim fso, msg Set fso = CreateObject("Scripting.FileSystemObject") If fso.DriveExists(drv) Then msg = ("Drive " & UCase(drv) & " exists.") Else msg = ("Drive " & UCase(drv) & " doesn't exist.") End If ReportDriveStatus = msg End Function
Drive Object | Drives Collection | FileExists 方法 | FolderExists 方法 | GetDrive 方法 | GetDriveName 方法 | IsReady 属性
应用于:FileSystemObject 对象