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 and iterate the collection using the for...in statement:

function ShowDriveList( )
{
    var fs, d, dc, s, n;
    fs = new ActiveXObject("Scripting.FileSystemObject");
    dc = fs.Drives
    for ( d in dc )
	{
        s = s + d.DriveLetter + " - ";
        if (d.DriveType == 3)
            n = d.ShareName
        else
            n = d.VolumeName;
        s += n + "\n";
    }
    window.alert(s);
}

© 1997 Microsoft Corporation. All rights reserved. Terms of Use.