# DriveType 属性

object.DriveType

返回由本地机器上所有 Drive 对象组成的 Drives 集合。

参数 描述
object 必选项。为 Drive 对象的名称。

说明 以下代码举例说明如何使用 DriveType 属性:

Function ShowDriveType(drvpath)    Dim fso, d, t
    Set fso = CreateObject("Scripting.FileSystemObject")
    Set d = fso.GetDrive(drvpath)    Select Case d.DriveType
        Case 0: t = "未知"        Case 1: t = "可移动"        Case 2: t = "固定"
        Case 3: t = "网络"        Case 4: t = "CD-ROM"        Case 5: t = "RAM 磁盘"
    End Select    ShowDriveType = "驱动器 " & d.DriveLetter & ": - " & t
End Function
1
2
3
4
5
6
7
应用于