ASP遍历文件文件夹的函数
<%@ Language=VBScript %>
<%
function bianli(path)
dim fso ‘fso对象
dim objFolder ‘文件夹对象
dim objSubFolders ‘子文件夹集合
dim objSubFolder ‘子文件夹对象
dim objFiles ‘文件集合
dim objFile ‘文件对象
set fso=server.CreateObject(“scripting.filesystemobject”)
on error resume next
set objFolder=fso.GetFolder(path)’创建文件夹对象
set objSubFolders=objFolder.Subfolders’创建的子文件夹对象
for each objSubFolder in objSubFolders
nowpath=path + “\\” + objSubFolder.name
Response.Write nowpath
set objFiles=objSubFolder.Files
for each objFile in objFiles
Response.Write “<br>—”
Response.Write objFile.name
next
Response.Write “<p>”
bianli(nowpath) ‘调用递归
next
set objFolder=nothing
set objSubFolders=nothing
set fso=nothing
end function
%>
<%
bianli(“d:\”) ‘调用bianli()函数,这里是遍历d:盘
%>