当前位置: 首页 > 图文教程 > 网络编程 > 编程10000问 > 如何遍历目录及目录下的文件?

编程10000问
ASP问答集
asp中在JScript中使用RecordSet对象的GetRows
oblog_4.6_SQL 语句

编程10000问 中的 如何遍历目录及目录下的文件?


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2010-01-10   浏览: 28 ::
收藏到网摘: n/a

<%@ 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.
%>