Microsoft® JScript® Folders Collection |
Scripting Run-Time Reference Version 3 |
Collection of all Folder objects contained within a Folder object.
The following example illustrates how to get a Folders collection and how to iterate the collection using the Enumerator object and the for statement: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); }