python批量更改文件后缀名
程序员文章站
2022-04-18 17:19:56
...
import os
path = './test/Q1706106'
count = 1
for file in os.listdir(path):
filename,ext = os.path.splitext(file)
os.rename(os.path.join(path,file),os.path.join(path,filename+".csv"))
count+=1
上一篇: 电商搜索流量分配策略未来进化方向探讨