刪除天正Tn后綴
import os
import re
import time
#去除文件的天正后綴
def Delete_tn():
? ? topPath = input('請(qǐng)輸入需要?jiǎng)h除天正后綴的文件夾路徑:\n')
? ? myStr=["_*[tT][0-9]+","[vV][0-9]+"]
? ? newName=""
? ? for n in myStr:
? ? ? ? pattern = re.compile(n)
? ? ? ? #獲取該目錄下所有文件,存入列表中
? ? ? ? for root,dirs,files in os.walk(topPath):
? ? ? ? ? ? if(len(files)>0):
? ? ? ? ? ? ? ? for fileName in files:
? ? ? ? ? ? ? ? ? ? os.chdir(root)
? ? ? ? ? ? ? ? ? ? if(pattern.findall(fileName)):
? ? ? ? ? ? ? ? ? ? ? ? newName =re.sub(n,"",fileName,0)
? ? ? ? ? ? ? ? ? ? ? ? if(os.path.exists(newName)):
? ? ? ? ? ? ? ? ? ? ? ? ? ? #os.remove(newName)
? ? ? ? ? ? ? ? ? ? ? ? ? ? print("或重名文件:"+os.path.realpath(newName))
? ? ? ? ? ? ? ? ? ? ? ? ? ? break
? ? ? ? ? ? ? ? ? ? ? ? else:
? ? ? ? ? ? ? ? ? ? ? ? ? ? print(os.path.realpath(fileName)+'=====>'+ newName)
? ? ? ? ? ? ? ? ? ? ? ? ? ? os.rename(fileName,newName)
Delete_tn()