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

python3批量为文件重命名

时间:2019-04-09 13:59:50      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:重命名   import   excel表格   命名   规范   为什么   表格   print   excel   

简介

为什么使用python批量重命名而没有使用shell,python对文字的处理更灵活,对于文件名中的空格不会出现报错。

代码:

#!/usr/bin/env python
# -*- coding:utf-8 -*-
"""
@author:Aiker Zhao
@file:rename_all.py
@time:下午10:29
"""

import os

path = "M:\\bd1\\都挺好\\"
new_path = "M:\\bd1\\doutinghao\\"
for file in os.listdir(path):
    # print(file)
    if os.path.isfile(os.path.join(path, file)) == True:
        if file.find(‘.mp4‘) < 0:
            print(file)
        else:
            file_number = file.split(‘@‘)[0]
            print(file_number)
            new_file_name = ‘都挺好‘ + file_number + ‘.mp4‘
            print(new_file_name)
            os.rename(os.path.join(path, file), os.path.join(new_path, new_file_name))

对于不规范的文件重命名,可以使用excel表格,通过对表格的处理来重命名,

python3批量为文件重命名

标签:重命名   import   excel表格   命名   规范   为什么   表格   print   excel   

原文地址:https://blog.51cto.com/m51cto/2375840

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