python批量修改文件名
程序员文章站
2022-04-17 11:41:01
...
版权声明:本文为博主原创文章,转载请注明出处。https://blog.csdn.net/weixin_43360384/article/details/84876840
本篇文章介绍下,怎么使用python批量修改文件名
import os
path = "文件夹路径"
filename = os.listdir(path)
n = 0
for i in filename:
oldname = path + i
newname = path + '新文件名' + str(n+1) + ".文件名后缀"
os.rename(oldname,newname)
n += 1
上一篇: powershell批量改文件名递增序号
下一篇: eclipse ide是什么