python3批量为文件重命名
为什么使用python批量重命名而没有使用shell,python对文字的处理更灵活,对于文件名中的空格不会出现报错。
代码:
#!/usr/bin/env python# -*- coding:utf-8 -*-"""@author:Aiker Zhao@file:rename_all.py@time:下午10:29"""import ospath = "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表格,通过对表格的处理来重命名,
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。