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

 

JScript Folder Object SubFolders Property

Returns a Folders collection consisting of all folders contained in a specified folder, including those with Hidden and System file attributes set.

Syntax: JScript Folder Object SubFolders Property

object.SubFolders

Arguments: JScript Folder Object SubFolders Property

object

A Folder object.

Remarks: JScript Folder Object SubFolders Property

The following code illustrates the use of the SubFolders property:

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.