批量重命名
Posted 风清扬001
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了批量重命名相关的知识,希望对你有一定的参考价值。
import os path = os.getcwd() os.chdir(path) file_name = os.listdir(path) # print file_name for each in file_name: if (‘WC‘ in each) and (‘WCT‘ not in each): name_rew = ‘WCT‘ + each[2:] os.rename(each,name_rew) print ‘%s rename to %s‘ %(each,name_rew) else: print ‘the file name is %s\t,don\‘t need to rename‘ %(each)
以上是关于批量重命名的主要内容,如果未能解决你的问题,请参考以下文章