是因工作需要做的一個批量修改代碼的小東西,拿出來與大家分享
目前可以處理的文件類型:.asp .inc .htm .html 具體類型可自行修改添加 程序實現(xiàn)的功能:將源目錄下的文件批量修改后存到目的目錄下
用它稍做修改可以實現(xiàn)很多東西噢! 別的不說了,代碼里面都寫的很清楚了
<% Server.ScriptTimeOut = 500 '腳本超時時間 '// +---------------------------------------------------------------------------+
'// | 批量修改函數(shù) | '// | ------------------------------------------------------------------------- | '// | 屬性:path_from 源文件目錄 path_to 目標文件工作目錄 | '// | ------------------------------------------------------------------------- | '// | 返回值:無 | '// | ------------------------------------------------------------------------- | '// | 程序流程:...... | '// | ------------------------------------------------------------------------- | '// | 編寫者:WYC; 編寫時間: 2004-03-08; | '// +---------------------------------------------------------------------------+ 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) '創(chuàng)建目錄 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 '讀取數(shù)據(jù) out.close '// +---------------------------------------------------+
'// | 文件內容處理模塊(主要,其他都是文件操作) | Set regEx = New RegExp regEx.Pattern = "(\>\s*\n)" regEx.Global = true '設置全部匹配模式 content = regEx.Replace(content, ">") '替換掉回車符 content = Replace(content, " ", "") '作tab替換 '// +---------------------------------------------------+ set objfile = server.createobject("scripting.filesystemobject") '定義一個服務器組件(寫入目標文件)
set outt = objfile.createtextfile(file_to,TRUE,FALSE) outt.write(content) '寫入數(shù)據(jù) outt.close else '否則直接復制文件 Set fso = CreateObject("Scripting.FileSystemObject") fso.CopyFile file_from, file_to End If Next End Sub midfile Server.mappath("temp/aaa"), Server.mappath("temp/bbb") '調用示例 源目錄temp/aaa 處理后存到temp/bbb
'源目錄 目的目錄(必須是已經(jīng)存在的目錄) %> manyou(他山之石) 敬上 資料引用:http://www./4317.html
|
|