使用Python转换来自不同路径的文件



我试图从不同的路径转换Excel文件,但它只转换路径列表中最后一个路径中的文件。

通过列表中的路径循环以获得要转换的文件的正确方法是什么?

import pandas as pd
import glob, os
import csv, json
import openpyxl
from pathlib import Path

list_path = Path("excel_files/PLM", "excel_files/PTR", "excel_files/TMR")
for xlsx_file in glob.glob(os.path.join(list_path,"*.xlsx*")):
data_xls = pd.read_excel(xlsx_file, 'Relatório - DADOS', index_col=None, engine = 'openpyxl')
csv_file = os.path.splitext(xlsx_file)[0]+".csv"
data_xls.to_csv(csv_file, encoding='utf-8', index=False)

Path("excel_files/PLM", "excel_files/PTR", "excel_files/TMR")返回单个路径,而不是路径列表:

>>> Path("excel_files/PLM", "excel_files/PTR", "excel_files/TMR")
PosixPath('excel_files/PLM/excel_files/PTR/excel_files/TMR')

老实说,我不知道为什么它会找到任何文件。

相反,你可能需要做另一个循环——比如:

for path in ["excel_files/PLM", "excel_files/PTR", "excel_files/TMR"]:
for xlsx_file in glob.glob(os.path.join(path, "*.xlsx*")):
...

相关内容

  • 没有找到相关文章

最新更新