码迷,mamicode.com
首页 > 编程语言 > 详细

python 批量重命名

时间:2021-01-26 11:48:41      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:lang   star   rename   std   with   exists   exception   name   start   


import os

def remove_filename(path_dir, start, end):
    files = [f for f in os.listdir(path_dir) if f.startswith(start) and f.endswith(end)]
    for file_name in files:
        new_file_name= file_name.replace(start,‘‘)
        os.chdir(path_dir)
        try:
            if not os.path.exists(new_file_name):
                print(file_name, ‘ changed to ‘, new_file_name)
                os.rename(file_name, new_file_name)
        except Exception as e:
            print(e)

python 批量重命名

标签:lang   star   rename   std   with   exists   exception   name   start   

原文地址:https://www.cnblogs.com/amize/p/14320358.html

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