美文网首页
python3 批量替换文件名称

python3 批量替换文件名称

作者: Leo_23 | 来源:发表于2021-11-01 19:49 被阅读0次

    python3 批量替换文件名称

    #!/usr/bin/env python
    # -*- coding: utf-8 -*-
    
    __author__ = "leo"
    __time__ = "2018-05-17"
    
    '''
    批量修改文件名称
    '''
    
    
    import os
    
    path = os.getcwd()
    
    for file in os.listdir(path):
        if os.path.isfile(os.path.join(path, file)) == True:
            try:
                # 替换文件名称 "abc" -> ""
                new_name = file.replace('post\\德子\\', '')
                os.rename(os.path.join(path, file), os.path.join(path, new_name))
            except Exception as e:
                pass
    

    相关文章

      网友评论

          本文标题:python3 批量替换文件名称

          本文链接:https://www.haomeiwen.com/subject/aqktzltx.html