帮我写一个遍历文件夹中的jpg图片的代码,并且循环用'str'格式等于img
时间: 2024-04-14 10:26:11 浏览: 87
C# 遍历文件夹子目录下所有图片及遍历文件夹下的文件
好的,下面是一个遍历文件夹中的 jpg 图片,并将文件路径存储在一个列表 `img` 中的示例代码:
```python
import os
folder_path = '/path/to/folder' # 文件夹路径
img = []
for file in os.listdir(folder_path):
if file.endswith('.jpg'):
img_path = os.path.join(folder_path, file)
img.append(str(img_path))
# 输出文件路径
for path in img:
print(path)
```
你需要将 `folder_path` 替换为你要遍历的文件夹的实际路径。代码将遍历文件夹中的文件,筛选出以 `.jpg` 结尾的文件,并将文件路径转换为字符串格式,然后将其存储在列表 `img` 中。最后,代码会循环遍历 `img` 列表,并输出每个文件的路径。
阅读全文