主页 > 知识库 > 读取目录下的所有文件(包括子目录下的所有文件)

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

热门标签:外呼系统API接口 修改地图标注 怎么在地图标注自己 武夷山旅游地图标注 莱西电子地图标注 凤台百度地图标注店 个人可以办理400电话么 县域地图标注打印店 金昌电话机器人价格
******************************

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


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

标签:上海 邢台 楚雄 清远 赤峰 南京 通辽 凉山

巨人网络通讯声明:本文标题《读取目录下的所有文件(包括子目录下的所有文件)》,本文关键词  读取,目,录下,的,所有,文件,;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 下面列出与本文章《读取目录下的所有文件(包括子目录下的所有文件)》相关的同类信息!
  • 本页收集关于读取目录下的所有文件(包括子目录下的所有文件)的相关信息资讯供网民参考!
  • 推荐文章