用asp實現的代碼批量修改程式

來源:互聯網
上載者:User
程式


用asp實現的代碼批量修改程式,fso相關

是因工作需要做的一個批量修改代碼的小東西,拿出來與大家分享
目前可以處理的檔案類型:.asp .inc .htm .html 具體類型可自行修改添加

程式實現的功能:將來源目錄下的檔案批量修改後存到目的目錄下
用它稍做修改可以實現很多東西噢!

別的不說了,代碼裡面都寫的很清楚了
<%
'// +---------------------------------------------------------------------------+
'// | 程式名稱: 他山之石代碼批量修改器 v1.01 |
'// | 他山之石著作權,侵權必究!轉載請註明著作權:) |
'// | ------------------------------------------------------------------------- |
'// | 系統:win2000; 編輯器:EditPlus; 縮排工具:Tab; 縮排長度:8; 字型:宋體(10pt); |
'// | ------------------------------------------------------------------------- |
'// | 建立者: WYC; 建立時間: 2004-03-08; |
'// | 編寫者: WYC; 編寫時間: 2004-03-08; |
'// +---------------------------------------------------------------------------+

Server.ScriptTimeOut = 500 '指令碼逾時時間

'// +---------------------------------------------------------------------------+
'// | 批量修改函數 |
'// | ------------------------------------------------------------------------- |
'// | 屬性: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) '建立目錄
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

'// +---------------------------------------------------+
'// | 檔案內容處理模組(主要,其他都是檔案操作) |
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) '寫入資料
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
'來源目錄 目的目錄(必須是已經存在的目錄)
%>




相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.