python 批量修改文件名
2021-03-11 21:31
标签:img str style col int poc def mic tin python 批量修改文件名 标签:img str style col int poc def mic tin 原文地址:https://www.cnblogs.com/tingtin/p/14092256.htmlimport os
import sys
def rename():
path=input("请输入路径:")
count=1
filelist=os.listdir(path)
for files in filelist:
ori_dir=os.path.join(path,files)
if os.path.isdir(ori_dir):#跳过目录
continue
now_dir = os.path.join(path, ‘SteroSR_x4_epoch‘+str(count)+‘.pth‘)
os.rename(ori_dir,now_dir)
count+=1
print("一共修改了"+str(count-1)+"个文件")
rename()
上一篇:迪杰斯特拉算法寻找最短路径
下一篇:Java实现二叉树简单算法操作