Sun Chili!Soft ASP Sun Chili!Soft
ASP Sun Microsystems

 

JScript Folders Collection

Collection of all Folder objects contained within a Folder object.

Remarks: JScript Folders Collection

The following code illustrates how to get a Folders collection and how to iterate the collection using the Enumerator object and the for statement:

function ShowFolderList(folderspec)

{

var fs, f, f1, fc, s;

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

f = fs.GetFolder(folderspec);

fc = new Enumerator(f.SubFolders);

s = "";

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

{

s += fc.item();

s += "<br>";

}

Response.Write(s);

}

Copyright 2002 Sun Microsystems, Inc. All rights reserved. Legal Notice.