Sun Chili!Soft ASP Sun Chili!Soft
ASP Sun Microsystems

 

JScript FileSystemObject Object Drives Property

Returns a Drives collection consisting of all Drive objects available on the local machine.

Syntax: JScript FileSystemObject Object Drives Property

object.Drives

Arguments: JScript FileSystemObject Object Drives Property

object

A FileSystemObject.

Remarks: JScript FileSystemObject Object Drives Property

Removable-media drives need not have media inserted for them to appear in the Drives collection.

You can iterate the members of the Drives collection using the Enumerator object and the for statement:

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);

}

Under UNIX the Drives collection has only one member, "/".

Copyright 2002 Sun Microsystems, Inc. All rights reserved. Legal Notice.