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

 

VBScript FileSystemObject Object Drives Property

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

Syntax: VBScript FileSystemObject Object Drives Property

object.Drives

Arguments: VBScript FileSystemObject Object Drives Property

object

A FileSystemObject.

Remarks: VBScript FileSystemObject Object Drives Property

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

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

You can iterate the members of the Drives collection using a For Each...Next construct as illustrated in the following code:

Sub ShowDriveList

Dim fs, d, dc, s, n

Set fs = CreateObject("Scripting.FileSystemObject")

Set dc = fs.Drives

For Each d in dc

s = s & d.DriveLetter & " - "

If d.DriveType = 3 Then

n = d.ShareName

Else

n = d.VolumeName

End If

s = s & n & vbCrLf

Next

Response.Write s

End Sub

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