gpt4 book ai didi

python - 在 os.path.isfile() 中使用通配符

转载 作者:IT老高 更新时间:2023-10-28 22:01:54 31 4
gpt4 key购买 nike

我想检查目录中是否有任何 .rar 文件。它不需要递归。

os.path.isfile() 中使用通配符是我最好的猜测,但它不起作用。那我该怎么办?

最佳答案

glob是你需要的。

>>> import glob
>>> glob.glob('*.rar') # all rar files within the directory, in this case the current working one
如果路径是现有的常规文件,

os.path.isfile() 返回 True。所以这用于检查文件是否已经存在并且不支持通配符。 glob 可以。

关于python - 在 os.path.isfile() 中使用通配符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4296138/

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