gpt4 book ai didi

python - 有没有办法找到Python中存在*.csv?

转载 作者:行者123 更新时间:2023-12-01 01:54:38 25 4
gpt4 key购买 nike

需要什么?

测试当前目录下是否生成*.csv文件。请注意,csv 文件是以日期/时间命名的,因此在这种情况下不可能获取文件名。

问题

尝试了 os.path.isfile([exact_path_to_file]) 并且它有效。然而,我们需要找到的是是否生成了任何一个 .csv 文件(如果是),则为断言 True,否则为断言 False。如果assertTrue,将删除该文件。这可以用Python实现吗?

引用

最接近的是使用正则表达式,如 this然而,对于这个简单的检查,是否真的需要使用正则表达式?

最佳答案

使用glob module列出目录中与模式匹配的文件:

import glob
import os.path

csv_files = glob.glob(os.path.join(directory_name, '*.csv'))

如果csv_files是非空列表,则存在匹配的文件。

在底层,glob 模块将 glob 模式转换为正则表达式(通过 fnmatch.translate() ,在给定目录上运行 os.listdir() ,并仅返回那些与模式匹配的名称,作为完整路径:

>>> import os.path, glob, tempfile
>>> with tempfile.TemporaryDirectory() as directory_name:
... pattern = os.path.join(directory_name, '*.csv')
... # nothing in the directory, empty glob
... print('CSV file count:', len(glob.glob(pattern)))
... # create some files
... for n in ('foo.csv', 'bar.txt', 'ham.csv', 'spam.png'):
... __ = open(os.path.join(directory_name, n), 'w') # touches file, creating it
... csv_files = glob.glob(pattern)
... print('CSV file count after creation:', len(csv_files))
... for filename in csv_files:
... print(filename)
...
CSV file count: 0
CSV file count after creation: 2
/var/folders/vh/80414gbd6p1cs28cfjtql3l80000gn/T/tmp2vttt0qf/foo.csv
/var/folders/vh/80414gbd6p1cs28cfjtql3l80000gn/T/tmp2vttt0qf/ham.csv

关于python - 有没有办法找到Python中存在*.csv?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50367594/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com