| SubFolders 属性 |
|
object 应为 Folder 对象的名称。
Function ShowFolderList(folderspec)
Dim fso= fso.GetFolder(folderspec)
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