重命名批处理python脚本
将Copy of ********.bmp或者Copy of Copy of ********.bmp 此类文件统一命名为********0.bmp 或者********00.bmp等格式,后面的0的个数代表********.bmp出现的次数+1。写了个下面的小脚本:
用到了字典,用到了os模块,学到了一些东西,呵呵!
代码如下:
import os """ 这个程序是用来将文件名改名,因为在文件夹里面有很多Copy of 重文件名,因此去掉windows 重命名风格而换用新的累加命名机制 作者:[email protected] 时间:2011年4月13日 """ def getFileNames(dirs, dict): #dir为目录名,lst列表 filenames=os.listdir(dirs) for name in filenames: key = filenames[filenames.index(name)] sign = "Copy Of " judge = key.find(sign) if (judge != -1 ): dict[key] = 1 else: #提取其中的真实文件名 trueKey= key[-12:] #因为真实的文件名都是在12位 if trueKey not in dict: #字典中不存在 dict[trueKey]=1 os.rename(dirs+str(os.sep)+name,dirs+str(os.sep)+trueKey) else: #split finames newKey= str(trueKey[:-4])+str('0'*dict[trueKey])+ str(trueKey[-3:]) dict[trueKey] = dict[trueKey]+1 os.rename(dirs+os.sep+name,dirs+os.sep+newKey) if '__name__=__main__': dict={} dirs = "C://temp" getFileNames(dirs, dict)
用到了字典,用到了os模块,学到了一些东西,呵呵!
相关推荐
shouen 2008-08-28
zjhqlmzldx 2019-08-27
89520991 2011-10-27
staritstarit 2013-01-28
conniezzp 2019-04-06
deadgrape 2012-05-26
MySQL 2011-03-06
vickay 2011-01-17
qonsnow 2010-10-10
crazyjingling 2010-03-04
MySQLHD 2019-04-02
BAT 批处理程序 2017-08-22
软件设计 2017-07-25
网络游戏 2017-07-25
BAT 批处理程序 2017-07-25
网络游戏 2017-05-27
网络游戏 2017-05-26
BAT 批处理程序 2017-05-24
BAT 批处理程序 2017-05-24