• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    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:盘 
    %>
    上一篇:asp生成不需要数据库的中奖码
    下一篇:asp数据库连接rs(user.id)
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    asp遍历目录及子目录的函数 asp,遍历,目录,及,子目录,