欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

VBS教程:属性-DriveType 属性

程序员文章站 2022-07-04 20:46:29
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