遍历文件夹:遍历目录以及目录下文件的函数



<%@ Language=VBScript %>
<%
  \'我写个遍历目录以及目录下文件
%>
<%
    function bianli(path)
         fso=server.CreateObject(\"scripting.filesystemobject\")   

        on error resume next
         objFolder=fso.GetFolder(path)
        
         objSubFolders=objFolder.Subfolders
        
        for each objSubFolder in objSubFolders
                        
            nowpath=path + \"\" + objSubFolder.name
            
            Response.Write nowpath

             objFiles=objSubFolder.Files

            for each objFile in objFiles
                Response.Write \"<br>---\"
                Response.Write objFile.name
            next
            Response.Write \"<p>\"
            bianli(nowpath)\'递归
            
        next
         objFolder=nothing
         objSubFolders=nothing
         fso=nothing
    end function
%>
<%
    bianli(\"d:\") \'遍历d:盘
%>
       
Tags:  php遍历目录 java遍历目录 遍历目录 遍历文件夹

延伸阅读

最新评论

发表评论