python批量修改文件后缀名

# -*- coding:utf-8 -*-
"""
作者:sunli
日期:2022年06月21日13:55
"""
# python批量更换后缀名
import os

path0 = r"D:\shujuji\SisFall_dataset"
path1 = r"D:\shujuji\SisFall_dataset" + '\\'


# 列出当前目录下所有的文件
files = os.listdir(path0)
print('files', files)

for filename in files:
    portion = os.path.splitext(filename)
    # 如果后缀是.txt
    if portion[1] == ".txt":
        # 重新组合文件名和后缀名
        newname = portion[0] + ".csv"
        filenamedir = path1 + filename
        newnamedir = path1 + newname
        os.rename(filenamedir, newnamedir)



#多个文件夹
# -*- coding:utf-8 -*-
"""
作者:sunli
日期:2022年06月21日14:05
"""

# python批量更换后缀名
import os

path0 = r"D:\shujuji\SisFall_dataset"
path1 = r"D:\shujuji\SisFall_dataset" + '\\'


# 列出当前目录下所有的文件
files = os.listdir(path0)
print('files', files)

for filename in files:
    path = path1 + filename
    file = os.listdir(path)
    for file_ in file:
        portion = os.path.splitext(file_)
        # 如果后缀是.txt
        if portion[1] == ".txt":
            # 重新组合文件名和后缀名
            newname = portion[0] + ".csv"
            filenamedir = path + '\\' + file_
            newnamedir = path + '\\' + newname
            os.rename(filenamedir, newnamedir)

你可能感兴趣的:(python)