Python os 批量修改文件名

Python os 批量修改文件名,第1张

概述#-*-coding:utf-8-*-importos#设定文件路径path=r'D:\郭鹏历届真题解析2007-2020'i=1#对目录下的文件进行遍历forfileinos.listdir(path):#判断是否是文件file_name=os.path.join(path,file)ifos.path.isfile(os.path.join(path,file))==True:#设置新文件名
# -*- Coding: utf-8 -*-
import os
#设定文件路径
path=r'D:\郭鹏历届真题解析2007-2020'
i=1
#对目录下的文件进行遍历
for file in os.Listdir(path):
#判断是否是文件
file_name=os.path.join(path,file)
if os.path.isfile(os.path.join(path,file))==True:
#设置新文件名

start=file.find("P")

end=file.find(").flv")

new_name=file[start:end]+".flv"
os.rename(os.path.join(path,file),os.path.join(path,new_name))
总结

以上是内存溢出为你收集整理的Python os 批量修改文件名全部内容,希望文章能够帮你解决Python os 批量修改文件名所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1186345.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-03
下一篇 2022-06-03

发表评论

登录后才能评论

评论列表(0条)

保存