Visual Basic Scripting Edition VBScript中文手册 |
语言参考 | 手册首页 | asp之家 |
文件夹中所有 File 对象的集合.
以下代码举例说明如何获得 Folders 集合并使用 For Each...Next 语句枚举集合成员:
Function ShowFolderList(folderspec)
Dim fso, f, f1, fc, s
Set fso = CreateObject("Scripting.FileSystemObject")
Set f = fso.GetFolder(folderspec)
Set fc = f.Files
For Each f1 in fc
s = s & f1.name
s = s & "<BR>"
Next
ShowFolderList = s
End Function
Files 集合无任何方法。
Drive 对象 | Drives 集合 | File 对象 | Folder 对象 | Folders 集合