0 Members and 1 Guest are viewing this topic.
function SpaceReport(drvPath){ var fso, d, s; fso = new ActiveXObject("Scripting.FileSystemObject"); d = fso.GetDrive(fso.GetDriveName(drvPath)); s = "Drive " + drvPath + " - "; s += d.VolumeName + "<br>"; s += "Total Space: "+ d.TotalSize/1024 + " Kbytes <br>"; s += "Free Space: " + d.FreeSpace/1024 + " Kbytes"; return(s);}
Function ShowVolumeInfo(drvpath) Dim fso, d, s Set fso = CreateObject("Scripting.FileSystemObject") Set d = fso.GetDrive(fso.GetDriveName(fso.GetAbsolutePathName(drvpath))) s = "Drive " & d.DriveLetter & ": - " & d.VolumeName ShowVolumeInfo = sEnd Function
FUNCTION ShowVolumeInfo (BYVAL drvPath AS STRING) AS STRING LOCAL fso AS IFileSystem LOCAL d AS IDrive LOCAL s AS STRING fso = NEWCOM "Scripting.FileSystemObject" d = fso.GetDrive(fso.GetDriveName(fso.GetAbsolutePathName(UCODE$(drvpath)))) s = "Drive " & ACODE$(d.DriveLetter) & ": - " & ACODE$(d.VolumeName) FUNCTION = sEND FUNCTION