使用 Python 查找目录中的所有 CSV 文件

2022-01-20 00:00:00 python directory csv file find

问题描述

如何在 python 中找到扩展名为 .csv 的目录中的所有文件?

How can I find all files in directory with the extension .csv in python?


解决方案

import os
import glob

path = 'c:\'
extension = 'csv'
os.chdir(path)
result = glob.glob('*.{}'.format(extension))
print(result)

相关文章