VBS教程:属性-DriveType 属性
程序员文章站
2022-04-29 09:23:48
drivetype 属性返回一个描述指定驱动器的类型的值。object.drivetype object 应为...
drivetype 属性
返回一个描述指定驱动器的类型的值。
object.drivetype
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 & ": - " & tend function