0 Members and 1 Guest are viewing this topic.
function ShowDriveInfo(drvpath){ var fso, d, s, t; fso = new ActiveXObject("Scripting.FileSystemObject"); d = fso.GetDrive(drvpath); switch (d.DriveType) { case 0: t = "Unknown"; break; case 1: t = "Removable"; break; case 2: t = "Fixed"; break; case 3: t = "Network"; break; case 4: t = "CD-ROM"; break; case 5: t = "RAM Disk"; break; } s = "Drive " + d.DriveLetter + ": - " + t; if (d.IsReady) s += "<br>" + "Drive is Ready."; else s += "<br>" + "Drive is not Ready."; return(s);}
Function ShowDriveInfo(drvpath) Dim fso, d, s, t Set fso = CreateObject("Scripting.FileSystemObject") Set d = fso.GetDrive(drvpath) Select Case d.DriveType Case 0: t = "Unknown" Case 1: t = "Removable" Case 2: t = "Fixed" Case 3: t = "Network" Case 4: t = "CD-ROM" Case 5: t = "RAM Disk" End Select s = "Drive " & d.DriveLetter & ": - " & t If d.IsReady Then s = s & "<BR>" & "Drive is Ready." Else s = s & "<BR>" & "Drive is not Ready." End If ShowDriveInfo = sEnd Function
FUNCTION ShowDriveInfo (BYVAL drvPath AS STRING) AS STRING LOCAL fso AS IFileSystem LOCAL d AS IDrive LOCAL s AS STRING LOCAL t AS STRING fso = NEWCOM "Scripting.FileSystemObject" d = fso.GetDrive(UCODE$(drvPath)) SELECT CASE d.DriveType CASE 0: t = "Unknown" CASE 1: t = "Removable" CASE 2: t = "Fixed" CASE 3: t = "Network" CASE 4: t = "CD-ROM" CASE 5: t = "RAM Disk" END SELECT s = "Drive " & ACODE$(d.DriveLetter) & ": - " & t If d.IsReady Then s = s & $CRLF & "Drive is Ready." Else s = s & $CRLF & "Drive is not Ready." End If FUNCTION = sEND FUNCTION