VBS自编写脚本。(实现批量修改文件名且在执行前,备份原有文件夹中的文件)

简介: '=========================================================================='' VBScript Source File -- Created with SAPIEN Technologies PrimalScript 4.

'==========================================================================
'
' 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 objPath


'===================================================================
'选择指定盘符下的目录
' 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

file_path = "C:\Users\Administrator\Desktop\1\music"'目标文件夹的路径
dst_file_path="C:\Users\Administrator\Desktop\1\music_bak"

 

'-----得到文件夹路径,且打开配置文件
Set fso = CreateObject("Scripting.FileSystemObject")
Set folder = fso.getfolder(file_path)
Set fs = folder.files
Set file=fso.OpenTextFile("E:\PRACTICE\VBS\config.ini",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_MyArrayReName()

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("完成!")

技术改变世界! --狂诗绝剑
目录
相关文章
|
6月前
批量文件改名工具
批量文件改名工具
|
6月前
讲解:如何根据txt文本列出的文件名批量查找指定文件夹里的文件并复制到新的文件夹里 , 按照文件名批量复制文件 , 根据文件名批量复制 , 通过文件名批量复制文件
该文介绍了一款批量文件处理软件,用于解决三类问题:依据文件名清单批量复制图片、筛选PDF文件及删除指定文件。用户可从百度或腾讯下载链接获取软件。操作步骤包括加载文件夹、输入文件名清单、设置目标位置、选择操作类型(复制、剪切或删除)及匹配方式,然后开始查找。软件能快速处理大量文件,提高办公效率,避免手动操作。查找结果会显示在特定文件夹和日志中,记录每个操作详情。
593 5
|
6月前
|
Java Shell Linux
Linux【脚本 01】简单Shell脚本实现定时备份文件、压缩、删除超时文件操作(showDoc文件备份脚本举例)
Linux【脚本 01】简单Shell脚本实现定时备份文件、压缩、删除超时文件操作(showDoc文件备份脚本举例)
323 0
|
6月前
|
Shell
删除常规文件及隐藏文件shell脚本
删除常规文件及隐藏文件shell脚本
76 1
|
6月前
|
定位技术 Python
PowerShell批量修改、替换大量文件的文件名
PowerShell批量修改、替换大量文件的文件名
134 1
|
运维
清理指定后缀名文件的 powerhsell 小脚本
工作日记:清理指定后缀名文件的 powerhsell 小脚本
69 0
|
Shell Linux
对目录下所有库文件进行rpath更改操作的SHELL脚本
对目录下所有库文件进行rpath更改操作的SHELL脚本
120 0
|
机器学习/深度学习 Python
利用python脚本批量重命名文件
利用python脚本批量重命名文件
246 0
bat文件调用cmd命令批量提取文件夹中的文件名(批量修改文件扩展名)
bat文件调用cmd命令批量提取文件夹中的文件名(批量修改文件扩展名)
1189 0
bat文件调用cmd命令批量提取文件夹中的文件名(批量修改文件扩展名)