asp遍历目录及子目录的函数分享


<%@ 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:盘
%>

—-想了解更多的linux相关异常处理怎么解决关注<计算机技术网(www.ctvol.com)!!>



本文来自网络收集,不代表计算机技术网立场,如涉及侵权请联系管理员删除。

ctvol管理联系方式QQ:251552304

本文章地址:https://www.ctvol.com/htmltutorial/73492.html

(0)
上一篇 2020年4月19日
下一篇 2020年4月19日

精彩推荐