[This is preliminary documentation and subject to change]
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);
}
The Files collection has no methods.
Count Property | Item Property
Drive Object | Drives Collection | File Object | Folder Object | Folders Collection