gpt4 book ai didi

python - 如何打开与子目录中的模式匹配的文件

转载 作者:太空宇宙 更新时间:2023-11-03 12:58:54 25 4
gpt4 key购买 nike

您好,我在查找和打开子目录中的文件时遇到问题。我有几个不同的文件,例如:
mouse_1_animal.txt
mouse_2_animal.txt mouse_3_animal.txt

所以我想在工作目录的子目录中找到所有这些文件并打开它们并对那里的行做一些事情。这是我的尝试:

i=1
for path, subdirs, files in os.walk(root) :
for file in files :
if file == "mouse_{0}_animal.txt".format(i) :
#do something
i = i + 1

但显然它没有找到所有文件,所以我想知道我用来查找文件的方式是否有误。

最佳答案

Python 方式:

import glob
for f in glob.glob('./subDir/mouse_*_animal.txt'):
# do_something

关于python - 如何打开与子目录中的模式匹配的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29535254/

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