JScript  

Files Collection

[This is preliminary documentation and subject to change]

Collection of all File objects within a folder.

Remarks

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);
}

Methods

The Files collection has no methods.

Properties

Count Property | Item Property

See Also

Drive Object | Drives Collection | File Object | Folder Object | Folders Collection