# -*- 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))
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。