返回與指定的路徑中驅動器相對應的 Drive 對象。
object.GetDrive drivespec
object
必選項。應為 FileSystemObject 的名稱。
drivespec
必選項。drivespec 可以是驅動器號 (c)、帶冒號的驅動器號 (c:)、帶有冒號與路徑分隔符的驅動器號 (c:/) 或任何指定的網絡共享 (//computer2/share1)。
對于網絡共享,檢查并確保該網絡共享存在。
若drivespec與已接受格式不一致或不存在,就會出錯。為了在調用 GetDrive 方法時使用標準路徑字符串,使用下列序列得到與 drivespec 相匹配的字符串:
DriveSpec = GetDriveName(GetAbsolutePathName(Path))
下面示例說明如何使用 GetDrive 方法:
Function ShowFreeSpace(drvPath) Dim fso, d, s Set fso = CreateObject("Scripting.FileSystemObject") Set d = fso.GetDrive(fso.GetDriveName(drvPath)) s = "Drive " & UCase(drvPath) & " - " s = s & d.VolumeName & "<BR>" s = s & "Free Space: " & FormatNumber(d.FreeSpace/1024, 0) s = s & " Kbytes" ShowFreeSpace = sEnd Function
新聞熱點
疑難解答