Microsoft® JScript® Files Collection |
Scripting Run-Time Reference Version 3 |
Collection of all File objects within a folder.
The following example illustrates how to get a Files collection and iterate the collection using the Enumerator object and the for statement:function ShowFolderFileList(folderspec) { var fso, f, f1, fc, s; fso = new ActiveXObject("Scripting.FileSystemObject"); f = fso.GetFolder(folderspec); fc = new Enumerator(f.files); s = ""; for (; !fc.atEnd(); fc.moveNext()) { s += fc.item(); s += "<br>"; } return(s); }