上一篇:列出指定目录下的所有文件和目录 >>
读取目录下的所有文件(包括子目录下的所有文件)
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不能做到的 >>
相关文章:
- · 在Apache上调试ASP.NET 1.1/2.0代码
- · ASP.NET初学:建立ASP.NET开发平台
- · 用ASP.Net和Access编写留言本
- · .net中发mail到hotmail中乱码问题的解决
- · ASP.Net应用程序的多进程模型
- · 用 ASP.NET 2.0 改进的 ViewState 加快网站速度
- · 在ASP.NET中使用Session常见问题集锦
- · ASP.NET文章管理系统:系统分析与设计
- · asp.net开发常用技巧收集
- · ASP.NET 2.0运行时简要分析
- · 在IIS6.0下ASP .NET 的版本冲突问题
- · ASP.NET:目录的遍历
- · ASP.NET:目录创建和删除
- · ASP.Net:基于窗体的身份验证
- · 防刷新重复提交、防后退方法
- · ASP.NET程序实现博客日历
- · 掌握Web窗体的生命周期与状态管理
- · ASP.NET 移动 Web 窗体和 ASP.NET 兼容性
- · ASP.NET入门随想之多态、接口与委托
- · ASP.Net项目出错处理方法汇总
- · 利用ASP.NET程序来访问Excel文档
- · ASP.NET应用程序开发七大技巧
- · VB.NET开发人员必备参考10本书目
- · 用ADO.NET处理层次数据
- · ASP.NET实现在服务器端控制网页
- · 用ASP.NET向Javascript传递变量
- · ASP.NET实现抓取网页中的链接
- · 在ASP.NET 2.0中实现数据的绑定
- · ASP.NET随机显示数据库记录
- · ASP.Net生成业务数据的统计图形
- · 剖析ASP.NET2.0导航功能之控制地图信息
- · ASP.Net中利用CSS实现多界面的方法
- · ASP.NET 常见问题
- · 在ASP.NET中实现POST发送数据
- · ASP.NET页面导航方式之比较与选择
- · ASP.NET操作IIS中的虚拟目录
- · 在ASP.NET 2.0中实现本地化
- · ASP.Net Cookie
