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

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    读取目录下的所有文件(包括子目录下的所有文件)
    ******************************

    Many times we might need some part of code which will access all sub-folders of the server and also all
    files within the sub-folder.
    The following line of asp code will map to a specified folder and searches all the sub-folders
    (Not recursively, code can be extended to do) and reads all files(basically text files) one by one.

    You can specify any folder name, in the remarks given in the code (within " ")

    'Create a File system Object
    set FileSystem=server.CreateObject("scripting.filesystemobject")

    dim dbconn

    folderpath=server.MapPath("main Folder path" )
    set sfolder=Filesystem.GetFolder(folderpath).SubFolders
    for each FolderItem in sfolder
    set Files=FolderItem.Files
    for each FileItem in Files
    fname=server.MapPath( "main folder path" FolderItem.Name "\&; FileItem.Name
    set File=FileSystem.OpenTextFile(fname,1,false)
    while File.AtEndofStream > True
    record=split(File.Readline,"~")
    wend
    File.close
    FileSystem.DeleteFile(fname)
    next
    next


    ******************************

    上一篇:列出指定目录下的所有文件和目录
    下一篇:ASP中FSO的神奇功能 - FSO不能做到的
  • 相关文章
  • 

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

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

    读取目录下的所有文件(包括子目录下的所有文件) 读取,目,录下,的,所有,文件,