WEB开发网
开发学院WEB开发ASP 读取目录下的所有文件(源码) 阅读

读取目录下的所有文件(源码)

 2000-11-11 10:55:11 来源:WEB开发网   
核心提示: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
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
   
   
   
   

Tags:读取 目录 所有

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接