批量重命名

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)

  

以上是关于批量重命名的主要内容,如果未能解决你的问题,请参考以下文章

批量重命名文件

bat批处理:根据文本文件批量重命名文件

批处理:批量重命名父文件夹下所有子文件夹里的文件

js 如何批量重命名文件

利用Python对文件进行批量重命名——以图片文件为例

使用 perl 表达式批量重命名文件