1 import os,shutil 2 3 file_path = "E:/downloads/068 分布式爬虫2期/视频" 4 # 改变工作文件夹 5 os.chdir(file_path) 6 7 # 遍历该文件夹所有的文件,并for循环 8 for name in os.listdir(file_path): 9 print(name) 10 11 # 修改文件名 12 new_name = name.split(" ")[1] 13 print(new_name) 14 15 # 文件名加上文件夹构成绝对路径 16 before_file = os.path.join(file_path, name) 17 after_file = os.path.join(file_path, new_name) 18 19 print(‘rename "%s" to "%s"......‘%(before_file,after_file)) 20 # 利用shutil.move将文件移动到原来位置(重命名的效果) 21 shutil.move(before_file, after_file)
我这边文件夹下的所有文件都是"某某机构 ***爬虫.flv",所以直接去掉“某某机构”留下正经的文件名
基本上os.listdir()加上shutil.move()搞定
还有更easy的方法,就是os.rename(oldname,newname)。推荐使用这个。
原文地址:https://www.cnblogs.com/baojinjin/p/8831243.html
时间: 2024-11-03 18:44:35