gpt4 book ai didi

python - 在不知道路径的情况下使用 python 查找图像列表(可能是 .jpg)。

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

是否可以使用Python代码在系统中搜索图像?例如,如果我不知道文件位置/路径,并且我想通过 python 列出它。是否可以?

最佳答案

这是我想出的一个肮脏的解决方案。

import os

# "." is your current directory. Feel free to pass any root path.
for root, dirs, files in os.walk(".", topdown=False):
for name in files:
if(name.endswith("jpg")):
print name

关于python - 在不知道路径的情况下使用 python 查找图像列表(可能是 .jpg)。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45522824/

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