簡單介紹VBS批次重新命名檔案並且操作前備份原有檔案
導讀 | 這篇文章主要介紹了VBS批次重新命名檔案並且操作前備份原有檔案,需要的朋友可以參考下 |
核心函式
'========================================================================== ' ' VBScript Source File -- Created with SAPIEN Technologies PrimalScript 4.0 ' ' NAME: ' ' AUTHOR: Microsoft , Microsoft ' DATE : 2014/7/9 ' ' COMMENT: '批次修改資料夾下對應的所有檔名 ' '========================================================================== '選擇我的電腦作為根目錄,來選擇目錄 Const MY_COMPUTER = &H11& Const WINDOW_HANDLE = 0 Const OPTIONS = 0 Set objShell = CreateObject("Shell.Application") Set objFolder = objShell.Namespace(MY_COMPUTER) Set objFolderItem = objFolder.Self strPath = objFolderItem.Path Set objShell = CreateObject("Shell.Application") Set objFolder = objShell.BrowseForFolder _ (WINDOW_HANDLE, "Select a folder:", OPTIONS, strPath) If objFolder Is Nothing Then Wscript.Quit End If Set objFolderItem = objFolder.Self objPath = objFolderItem.Path 'MsgBox objFolderItem.name '=================================================================== '選擇指定磁碟機代號下的目錄 ' Const WINDOW_HANDLE = 0 ' Const OPTIONS = 0 ' ' Set objShell = CreateObject("Shell.Application") ' Set objFolder = objShell.BrowseForFolder _ ' (WINDOW_HANDLE, "Select a folder:", OPTIONS, "C:\") ' ' If objFolder Is Nothing Then ' Wscript.Quit ' End If ' ' Set objFolderItem = objFolder.Self ' objPath = objFolderItem.Path ' ' MsgBox objPath '========================================================================= '定義變數 dim file_path,prefix_name,suffix_name,repeat_name,repeat_edit Dim OneLine,TwoLine,ThreeLine,FourLine,FiveLine i=0 test = createobject("Scripting.FileSystemObject").GetFile(Wscript.ScriptFullName).ParentFolder.Path 'Wscript.echo test filepath=test&"\config.ini" 'WScript.Echo filepath ' file_path = "C:\Users\Administrator\Desktop\1\music"'目標資料夾的路徑 dst_file_path="C:\"&objFolderItem.name&"_bak" file_path=objPath '-----得到資料夾路徑,且開啟配置檔案 Set fso = CreateObject("Scripting.FileSystemObject") Set folder = fso.getfolder(file_path) Set fs = folder.files Set file=fso.OpenTextFile(filepath,1) '----------------在操作前,備份一下原有的檔案 fso.CopyFolder file_path,dst_file_path,True '---------------------------------- '取出第一行中的兩個數 OneLine=file.ReadLine OneLineStr=Split(OneLine,"=") OneLineCount=UBound(split(OneLine,"=")) For i1=0 To OneLineCount 'WScript.Echo OneLineStr(i1) Next '------------------------------------- '取出第二行中的兩個數 TwoLine=file.ReadLine TwoLineStr=Split(TwoLine,"=") TwoLineCount=UBound(split(TwoLine,"=")) For i2=0 To TwoLineCount 'WScript.Echo TwoLineStr(i2) Next '------------------------------------------- '取出第三行中的兩個數 ThreeLine=file.ReadLine ThreeLineStr=Split(ThreeLine,"=") ThreeLineCount=UBound(split(ThreeLine,"=")) For i3=0 To ThreeLineCount 'WScript.Echo ThreeLineStr(i3) Next '------------------------------------------- '取出第四行中的兩個數 FourLine=file.ReadLine FourLineStr=Split(FourLine,"=") FourLineCount=UBound(split(FourLine,"=")) For i4=0 To FourLineCount 'WScript.Echo FourLineStr(i4) Next '----------------------------------------- '取出第五行中的兩個數 FiveLine=file.ReadLine FiveLineStr=Split(FiveLine,"=") FiveLineCount=Ubound(split(FiveLine,"=")) For i5=0 To FiveLineCount 'WScript.Echo FiveLineStr(i5) Next '--------------------------------------------- '呼叫過程 'Function_Main() Function Function_Main() If OneLineStr(1)="true" Then Function_Prefix_Name() Elseif OneLineStr(1)="false" Then Function_Suffix_Name() Elseif OneLineStr(1)="number" Then Function_Number_Value() Elseif OneLineStr(1)="array" Then Function_MyArrayReName() Elseif OneLineStr(1)="" Then WScript.Quit End If End Function '----------------------------------------- '在原有名稱前增加字首 Function Function_Prefix_Name() For Each file in fs File.Name=TwoLineStr(1)&File.Name Next End Function '-------------------------------------- '在原有名稱前增加字尾 Function Function_Suffix_Name() For Each file in fs Name=Mid(file.name,1,instrrev(file.name,".")-1) '取到.號前面的檔名 Format=Mid(file.name,instrrev(file.name,".")) '取到.號後面的字尾格式 file.Name=Name&ThreeLineStr(1)&Format Next End Function '-------------------------------------------- '在原有名稱前增加有序自增數字 Function Function_Number_Value() For Each file In fs FourLineStr(1)=FourLineStr(1)+1 file.name=FourLineStr(1)&file.name Next End Function 'Function_Suffix_Name() '-------------------------------------------------- '批次更改檔名稱 Function Function_MyArrayReName() Const BeforAlarm="發生犯人暴獄,請注意觀察" Const AfterAlarm="發生犯人暴獄,各小組按預案處置" Dim MyArray(12) n=1 y=0 For i=0 To 12 If i=11 Then MyArray(i)="監門哨" Elseif i=12 Then MyArray(i)="自衛哨" Else MyArray(i)=n&"號哨" n=n+1 End If ' WScript.Echo MyArray(i) Next For Each file In fs Format=Mid(file.name,instrrev(file.name,".")) 'MsgBox Format 'MsgBox MyArray(y) If FiveLineStr(1)="before" Then file.name=MyArray(y)&BeforAlarm&Format Elseif FiveLineStr(1)="after" Then file.name=MyArray(y)&AfterAlarm&Format Else MsgBox "請先設定是確認前還是確認後!",,"提示" WScript.Quit End If y=y+1 'WScript.Echo file.name Next End Function '======================================================================= ' If prefix_name <> "" then'批次加字首 ' For each f in fs ' f.name = prefix_name&f.name ' Next ' End If ' ' if suffix_name <> "" then'批次加字尾 ' For each f in fs ' name = Mid(f.name,1,InstrRev(f.name,".")-1) ' format = Mid(f.name,InstrRev(f.name,".")) ' f.name = name & suffix_name & format ' Next ' end If ' ' if repeat_name <> "" then'批次刪除相同字元 ' For each f in fs ' On Error Resume Next ' f.name = Replace(f.name,repeat_name,repeat_edit) ' Next ' end If ' '-----檔案操作結束 ' ' set fso = nothing'釋放記憶體 ' ' MsgBox("完成!")
需用用到配置檔案
config.ini檔案內容: statue= prefix_name=[320kbp] suffix_name=[結束] i=20140100 array=
引數配置使用方法:
- statue=true時為增加字首
- statue=false時為增加字尾
- statue=number 時為增加有序自增數字。
- statue=array 為呼叫陣列函式
- statue=空值時為空,不作處理,退出 操作。
- array=before時,設定為確認前。
- array=after時,設定為確認後。
- array=空時,彈出提示資訊,退出 操作。
好了這篇文章就介紹到這了,主要用到了FileSystemObject與mid函式
原文來自:
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69955379/viewspace-2900934/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 簡單介紹VBS 批次Ping的專案實現
- 檔案管理簡單介紹
- python 備份檔案,從 D盤 到Z盤。並且保留15天的檔案Python
- iOS 檔案操作簡介iOS
- 批次檔案重新命名的方法
- 簡單介紹Shell指令碼之檔案批次建立與修改的方法指令碼
- Linux基楚操作指引【檔案改名、檔案備份、檔案刪除】Linux
- 簡單介紹Linux環境變數檔案Linux變數
- AQ錄製軟體批次匯入影片檔案並且合併影片檔案的方法
- bat批處理使用ren批次重新命名檔案,比如批次去掉檔名稱的前4位BAT
- 檔案批次重新命名軟體:Renamer——MacwMac
- 如何批次對檔案進行重新命名?
- 簡單介紹一下 Linux 檔案系統?Linux
- sql檔案備份SQL
- linux批次find查詢檔案並批次替換覆蓋該檔案Linux
- 簡單介紹python如何在檔案中部插入資訊Python
- 簡單介紹python程式設計之檔案讀寫Python程式設計
- php如何上傳txt檔案,並且讀取txt檔案PHP
- 簡單介紹nacos單機本地配置檔案儲存位置方式
- Networker備份windows檔案Windows
- Mysql匯出檔案及備份操作筆記MySql筆記
- NodeJs fs(檔案系統簡單操作)NodeJS
- Linux實現定時備份MySQL資料庫並刪除30天前的備份檔案LinuxMySql資料庫
- win10批次檔案改名方法 win10系統下如何批次重新命名檔案Win10
- YAML檔案簡介YAML
- CPL檔案利用介紹
- Windows 10找不到hosts檔案,且注意lmhosts.sam檔案並不能代表hosts檔案Windows
- windows10如何對多個檔案重新命名_windows10批次重新命名檔案的方法Windows
- 檔案批次查詢複製匯出,按檔名批次查詢檔案,按檔案內容批次查詢檔案
- 三款Linux檔案傳輸工具簡單介紹-行雲管家Linux
- 用SpringMVC來簡單的操作Excel檔案SpringMVCExcel
- win10如何備份桌面檔案 win10怎樣備份桌面檔案Win10
- ManagerDB 備份檔案管理與異地備份
- YAM yml 配置檔案介紹
- postman測試多檔案上傳,並且後臺接收檔案陣列Postman陣列
- 簡單介紹在 Linux 上建立和使用交換檔案的方法Linux
- 【RMAN】Oracle中如何備份控制檔案?備份控制檔案的方式有哪幾種?Oracle
- Python讀取大量Excel檔案並跨檔案批次計算平均值PythonExcel