Collection of all Folder objects contained within a Folder object.
Remarks
The following example illustrates how to get a Folders collection and how to iterate the collection:
JScript | Copy Code |
---|---|
function ShowFolderList(folderspec) { var fso, f, fc, s; fso = new ActiveXObject("Scripting.FileSystemObject"); f = fso.GetFolder(folderspec); fc = new Enumerator(f.SubFolders); s = ""; for (; !fc.atEnd(); fc.moveNext()) { s += fc.item(); s += "<br>"; } return(s); } |
Visual Basic Script | Copy Code |
---|---|
Function ShowFolderList(folderspec) Dim fso, f, f1, fc, s Set fso = CreateObject("Scripting.FileSystemObject") Set f = fso.GetFolder(folderspec) Set fc = f.SubFolders For Each f1 in fc s = s & f1.name s = s & "<BR>" Next ShowFolderList = s End Function |