(PWS4 IIS4 IIS5)
SubFolders — 指定されたフォルダ内にあるすべてのフォルダの入った Folders コレクションを返します。このコレクションには、隠しファイルやシステム ファイルの属性を持つフォルダも含まれます。
構文
object.SubFolders
パラメータ
- object
- Folder オブジェクトを指定します。
戻り値
Files コレクションを返します。
説明
フォルダのサブフォルダを Files コレクションとして返します。
例
JScript
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | function ShowFolderList(folderspec) { var fso, f, fc, s; fso = new ActiveXObject("Scripting.FileSystemObject"); f = fso.GetFolder(folderspec); fc = new Enumerator(f.SubFolders); s = ""; for (;!fc.atEnd(); fc.moveNext()) { s += fc.item(); s += "<br />"; } return(s); } |
VBScript
1 2 3 4 5 6 7 8 9 10 11 | Function ShowFolderList(folderspec) Dim fso, f, f1, s, sf Set fso = CreateObject("Scripting.FileSystemObject") Set f = fso.GetFolder(folderspec) Set sf = f.SubFolders For Each f1 in sf s = s & f1.name s = s & "<br />" Next ShowFolderList = s End Function |