本文主要是介绍python重命名文件夹内指定后缀的文件,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
#coding:utf8
import os;your_need_process_type=[".avi",".mp4"]
def rename():i=0path="./你要处理的文件夹/";filelist=os.listdir(path)#该文件夹下所有的文件(包括文件夹)for files in filelist:#遍历所有文件i=i+1Olddir=os.path.join(path,files);#原来的文件路径 if os.path.isdir(Olddir):#如果是文件夹则跳过continue;filename=os.path.splitext(files)[0];#文件名filetype=os.path.splitext(files)[1];#文件扩展名if filetype in your_need_process_type:Newdir=os.path.join(path,"BusinessHall_"+str(i)+filetype);#新的文件路径os.rename(Olddir,Newdir)#重命名
rename()
这篇关于python重命名文件夹内指定后缀的文件的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!