码迷,mamicode.com
首页 > 其他好文 > 详细

批量重命名

时间:2017-11-28 16:42:48      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:getcwd   path   name   python   file   list   class   重命名   rename   

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)

  

批量重命名

标签:getcwd   path   name   python   file   list   class   重命名   rename   

原文地址:http://www.cnblogs.com/hester/p/7910322.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!