Python的OS模块批量修改文件名
Posted Tester_Jhm
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python的OS模块批量修改文件名相关的知识,希望对你有一定的参考价值。
大量文件名需要进行有序整理时,可以使用Python的OS模块进行文件批量重命名,脚本如下:
import os path = ‘D:PycharmProjectsdownload_photosdown_photos‘ #文件路径 count = 1 filelist = os.listdir(path) #该文件夹下所有文件 def rename(): global count for files in filelist: #遍历文件 Olddir = os.path.join(path,files) #原来的文件路径 filename = os.path.splitext(files)[0] #文件名 filetype = os.path.splitext(files)[1] #文件扩展名 #print(filename) #print(filetype) Newdir = os.path.join(path,"文件名"+str(count)+".jpg") #新的文件路径 os.rename(Olddir,Newdir) #重命名 count+=1 rename()
以上是关于Python的OS模块批量修改文件名的主要内容,如果未能解决你的问题,请参考以下文章