Microsoft JScript
Drives Collection
Language Reference
Version 3

See Also Properties Methods


Description
Read-only collection of all available drives.
Remarks
Removable-media drives need not have media inserted for them to appear in the Drives collection.

The following code illustrates how to get the Drives collection using the Drives property and iterate the collection using the Enumerator object:


function ShowDriveList()
{
 var fs, s, n, e, x;
 fs = new ActiveXObject("Scripting.FileSystemObject");
 e = new Enumerator(fs.Drives);
 s = "";
 for (; !e.atEnd(); e.moveNext())
 {
 x = e.item();
 s = s + x.DriveLetter;
 s += " - ";
 if (x.DriveType == 3)
 n = x.ShareName;
 else if (x.IsReady)
 n = x.VolumeName;
 else
 n = "[Drive not ready]";
 s += n + "<br>";
 }
 Response.Write(s);
}



Comments