[摘要]'// +---------------------------------------------------------------------------+Sub midfile(pa...
'// +---------------------------------------------------------------------------+
Sub midfile(path_from, path_to)
list_from = path_from '储存当前源工作目录
list_to = path_to '储存当前目标工作目录
Set fso = CreateObject("Scripting.FileSystemObject")
Set Fold = fso.GetFolder(list_from) '获取Folder对象
Set fc = Fold.Files '获取文件记录集
Set mm = Fold.SubFolders '获取目录记录集
For Each f2 in mm
set objfile = server.createobject("scripting.filesystemobject")
objfile.CreateFolder(path_to & "\" & f2.name) '创建目录
midfile path_from & "\" & f2.name, path_to & "\" & f2.name '递归调用
response.write path_to & "\" & f2.name & " 完毕!<br>"
Next
For Each f1 in fc
file_from = list_from & "\" & f1.name '生成文件地址(源)
file_to = list_to & "\" & f1.name '生成文件地址(到)
fileExt = lcase(right(f1.name,4)) '获取文件类型
If fileExt=".asp" or fileExt=".inc" or fileExt=".htm" or fileExt="html" Then '具体类型可自行修改添加
set objfile = server.createobject("scripting.filesystemobject") '定义一个服务器组件(读取源文件)
set out = objfile.opentextfile(file_from, 1, false, false)
content = out.readall '读取数据
out.close
'// +---------------------------------------------------+
'//
关键词:用asp完成的代码大局部更改程序