Microsoft® JScript™
SubFolders Property
 Language Reference 
Version 3 

See Also                  Applies To


Description
Returns a Folders collection consisting of all folders contained in a specified folder, including those with Hidden and System file attributes set.
Syntax
object.SubFolders

The object is always a Folder object.

Remarks
The following code illustrates the use of the SubFolders property:
function ShowFolderList(folderspec)
{
    var fs, f, f1, s, sf;
    fs = new ActiveXObject("Scripting.FileSystemObject");
    f = fs.GetFolder(folderspec);
    fc = f.SubFolders;
    s = "";
    for (f1 in sf)
    {
        s += f1.name ;
        s += "\n";
    }
    window.alert(s);
}

© 1997 by Microsoft Corporation. All rights reserved.