当前位置:主页 > 脚本语言 > VBS >

VBS教程:对象-Drive 对象

时间:2021-07-16 10:43:47 | 栏目:VBS | 点击:

Drive 对象

提供对磁盘驱动器或网络共享的属性的访问。

说明

以下代码举例说明如何使用 Drive 对象访问驱动器的属性:

Function ShowFreeSpace(drvPath)Dim fso, d, s    Set fso = CreateObject("Scripting.FileSystemObject")    Set d = fso.GetDrive(fso.GetDriveName(drvPath))    s = "驱动器 " & UCase(drvPath) & " - "     s = s & d.VolumeName  & "<BR>"    s = s & "可用空间: " & FormatNumber(d.FreeSpace/1024, 0) s = s & "KB"ShowFreeSpace = sEnd Function

您可能感兴趣的文章:

相关文章