vbs批量替换文件名称

' 批量替换文件名称
' author : avill
' upate  :2006.2.28
'


Dim NewLine
NewLine = vbcrlf
TabStop = ""


function isFolderExists(fso,folderPath)
  if folderPath = empty then exit function
  If not FSO.FolderExists(folderPath) Then
     msgbox "foloder not exists!please try agian"
     folderPath = InputBox("批量替换文件名称"& vbcrlf &"请输入路径[绝对路径],为空则自动退出","")
     call isFolderExists(fso,folderPath)     
  end if
end function


Function doRepWord(Files,filePath,repWord,resWord)


    Dim S,file,count,newName
        repWord = split(repWord,";")
        count = 0
        Set fso = CreateObject("Scripting.FileSystemObject")


        For Each File In Files
          for each repStr in repWord
           if instr(File.Name,repStr)<>0 then
             newName = replace(file.name,repStr,resWord)
             If not fso.FileExists(filePath&"\"&newName) Then
                'msgBox "exists"             
                file.name = newName
                count = count + 1
             end if
           end if
          next 
        Next


    doRepWord = count


End Function


sub reName(path)
  dim s,folderPath,repWord,resWord
  'folderPath = "F:\Exercise\xhtml_info\taobao_images"   'absolutive path
  'folderPath = ""
  'folderPath = InputBox("批量替换文件名称"& vbcrlf &"请输入路径[绝对路径]","")
  folderPath=path
  
  
  Set fso = CreateObject("Scripting.FileSystemObject")
  call isFolderExists(fso,folderPath)
  if folderPath = empty then exit sub
  repWord = InputBox("希望要替换掉的字符,多个字符请用分号[;]隔开!","")
  resWord = InputBox("希望将字符替换为:!","") 
 
  Set Folder = FSO.GetFolder(folderPath)
  Set Files = Folder.Files
 
  If 1 = Files.Count Then
     S = S & "There is 1 file" & NewLine
  Else
     S = S & "There are " & Files.Count & " files" & NewLine
  End If


  If Files.Count <> 0 Then
     s = s & "replace files:" & doRepWord(Files,folderPath,repWord,resWord) &NewLine
  End If


  msgbox s 
  
end sub


Set objShell = CreateObject("Wscript.Shell")
'MsgBox objShell.CurrentDirectory


call reName(objShell.CurrentDirectory)

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值