Python檔案重新命名工具

來源:互聯網
上載者:User

 #Filename:brn.py
#Description: batch replace certain words in file names

#Use to bat rename the file in a dir(modify the suffix from a to b) for Windows Vista OS
import sys
import os
import fnmatch
import re

#parse params
p=input("Please input work directory(current path for enter):")
if p=='/r':
  p='.'
p=p.rstrip('/r')
print (p)
while not os.path.exists(p):
  print (p+' is not existed.Please input the work directory:')
  p=input("Please input work directory(current path for enter):")
s=input("Please enter the words which need be modified(must):")
while s=='/r':
  s=input("Please enter the words which need be replaced(must):")
s=s.rstrip('/r')
d=input("Please enter the words which want to change to(must):")
while d=='/r':
  d=input("Please enter the words which want to change to(must):")
d=d.rstrip('/r')
try:
  sure=input("Are you sure to rename the file named *"+s+"*"+" to *"+d+"*"+" in directory "+p+"? y/n:")
  sure=sure.rstrip('/r')
  if sure!='y':
    print ("Cancel")
  else:
    for root, dirs, files in os.walk(p, True):
        for file in files:
            print (os.path.join(root,file))
            if os.path.isfile(os.path.join(root,file)):#Only file is file,not a dir ,do this
                if fnmatch.fnmatch(file, '*'+s+'*'):
                    f=str(file).replace(s,d)
                    if p=='.':
                        command='move '+str(file)+" "+f
                    else:
                        command="move "+os.path.join(root,file)+" "+os.path.join(root,f)
                    print (command)
                    if os.system(command)==0:#do actual rename
                        print ("Rename "+str(file)+" to "+f+" success")
                    else:
                        print ("Rename "+str(file)+" to "+f+" failed")
                #else:
                  #print str(file)+" is a directory.omit"
         
except IndexError:
  print (IndexError.message)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.