Microsoft® JScript™
Files Collection
 Language Reference 
Version 3 

See Also                  Properties                  Methods


Description
Collection of all File objects within a folder.
Remarks
The following code illustrates how to get a Files collection and 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.Files;
    s = "";
    for (f1 in fc)
    {
        s += f1.name ;
        s += "\n";
    }
    window.alert(s);
}

© 1997 by Microsoft Corporation. All rights reserved.