我是靠谱客的博主 不安心情,这篇文章主要介绍如何遍历目录及目录下的文件?,现在分享给大家,希望可以做个参考。

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

最后

以上就是不安心情最近收集整理的关于如何遍历目录及目录下的文件?的全部内容,更多相关如何遍历目录及目录下内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(151)

评论列表共有 0 条评论

立即
投稿
返回
顶部