The following code illustrates the use of the Drive object to access drive properties:
Sub ShowFreeSpace(drvPath) Dim fs, d, s Set fs = CreateObject("Scripting.FileSystemObject") Set d =fs.GetDrive(
fs.GetDriveName(drvPath))
s = "Drive " & UCase(drvPath) & " - " s = s & d.VolumeName & vbCrLf s = s & "Free Space: " & FormatNumber(d.FreeSpace/1024, 0) s = s & " Kbytes" MsgBox s End Sub
Properties, Methods, and Events | DriveExists Method | Drives Collection | File Object | Files Collection | FileSystemObject Object | Folder Object | Folders Collection