Returns a Folder object representing the root folder of a specified drive. Read-only.
object.RootFolder |
Remarks
The object is always a Drive object.
All the files and folders contained on the drive can be accessed using the returned Folder object.
The following example illustrates the use of the RootFolder property:
JScript | Copy Code |
---|---|
function GetRootFolder(drv) { var fso,d; fso = new ActiveXObject("Scripting.FileSystemObject"); if (fso.DriveExists(drv)) { d = fso.GetDrive(drv); return(d.RootFolder); } else return(false); } |
Visual Basic Script | Copy Code |
---|---|
Function ShowRootFolder(drvspec) Dim fso, f Set fso = CreateObject("Scripting.FileSystemObject") Set f = fso.GetDrive(drvspec) ShowRootFolder = f.RootFolder End Function |