当前位置:开发者网络 >> 技术教程 >> ASP教程 >> FSO专题 >> 内容
精彩推荐
分类最新教程
分类热点教程
  
遍历目录以及目录下文件的函数
作者:未知
日期:2004-03-11
人气:
投稿:xiaxia(转贴)
来源:未知
字体:
收藏:加入浏览器收藏
以下正文:
<%@ 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("d:") '遍历d:盘
%>

--------------------------------------
很不错哦。
相关文章: