Previous PageNext Page

7.27.2 Files Collection

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 Enumerator object and the for statement:
 

function ShowFolderFileList(folderspec)

{

var fs, f, f1, fc, s;

fs = new ActiveXObject("Scripting.FileSystemObject");

f = fs.GetFolder(folderspec);

fc = new Enumerator(f.files);

s = "";

for (; !fc.atEnd(); fc.moveNext())

{

s += fc.item();

s += "<br>";

}

Response.Write(s);

}


Copyright © 2000 Chili!Soft

Previous PageTop Of PageNext Page