Microsoft® JScript Folders Collection |
Language Reference Version 3 |
Collection of all Folder objects contained within a Folder object.
The following code illustrates how to get a Folders collection and how to iterate the collection using the for...in statement:function ShowFolderList(folderspec) { var fs, f, f1, fc, s; fs = new ActiveXObject("Scripting.FileSystemObject"); f = fs.GetFolder(folderspec); fc = f.SubFolders; s = ""; for (f1 in fc) { s += f1.name ; s += "\n"; } window.alert(s); }