VBS教程:属性-Drives 属性
程序员文章站
2022-04-10 08:28:15
drives 属性返回由本地机器上所有 drive 对象组成的 drives 集合。object.drives...
drives 属性
返回由本地机器上所有 drive 对象组成的 drives 集合。
object.drives
object 应为 filesystemobject 对象的名称。
说明
无论是否插入媒体,可移动媒体驱动器都显示在 drives 集合中。
您可以使用 for each...next 结构枚举 drives 集合的成员,如下例所示:
function showdrivelist dim fso, d, dc, s, n set fso = createobject("scripting.filesystemobject") set dc = fso.drives for each d in dc n = "" s = s & d.driveletter & " - " if d.drivetype = 3 then n = d.sharename elseif d.isready then n = d.volumename end if s = s & n & "<br>" next showdrivelist = send function