欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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