VolumeName 屬性
設置或返回指定驅動器的卷標??勺x寫。
object.VolumeName [= newname]
參數(shù)
object
必選項。應為 Drive 對象的名稱。
newname
可選項。如果提供此參數(shù),則 newname 為指定的 object 的新名稱。
說明
以下代碼舉例說明如何使用 VolumeName 屬性:
Function ShowVolumeInfo(drvpath) Dim fso, d, s Set fso = CreateObject("Scripting.FileSystemObject") Set d = fso.GetDrive(fs.GetDriveName(fso.GetAbsolutePathName(drvpath))) s = "
驅動器 " d.DriveLetter ": - " d.VolumeName
ShowVolumeInfo = s
End Function