python-批量更改文件名
程序员文章站
2022-04-18 15:57:59
...
import os
path = r'H:\EB\migu_boce\screen_recording'
# 获取该目录下所有文件,存入列表中
fileList = os.listdir(path)
fileList.sort()
n = 1
for i in range(len(fileList)):
# 设置旧文件名(就是路径+文件名)
if fileList[i].endswith('.mp4'):
oldname = path + '//' + fileList[i] # os.sep添加系统分隔符
# 设置新文件名
newname = path + '//' + str(1) + '.mp4'
os.rename(oldname, newname) # 用os模块中的rename方法对文件改名
print(oldname, '======>', newname)
n += 1