如何取得文件夹里的所有下级子目录?请教!
<%
the_fload="Admin"
Set fso= Server.CreateObject("Scripting.FileSystemObject")
Set folderpath = fso.GetFolder(server.mappath(the_fload))
For Each thing in folderpath.Files
Response.Write("<p>--"&thing&"--<br>")
Next
%>
这样可以把Admin目录下的所有文件显示出来,但不包括子文件夹。请问如何取得文件夹里的所有下级子目录呢?多谢指教!