现在的位置: 首页 > 综合 > 正文

如何遍历目录及目录下的文件?

2013年03月12日 ⁄ 综合 ⁄ 共 519字 ⁄ 字号 评论关闭

<%@ Language=VBScript %>
<%
function bianli(path)
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("f:")

' 遍历F.
%>

抱歉!评论已关闭.