Python 利用os 获取文件夹中每一张图片的名字 并保存至 txt

Python 利用os 获取文件夹中每一张图片的名字 并保存至 txt


Python 利用os 获取文件夹中每一张图片的名字 并保存至 txt_第1张图片

目标:将同一文件夹中的每张图的名字保存下来。
操作方式:用了os库和一个for循环
注意:主要是地址的,包括图片的地址和保存的地址。

#!/usr/bin/python
#coding:utf-8

import os

path_imgs = '/home/ground_truth/'
for files in os.listdir(path_imgs):
    print(files)
    img_path = path_imgs+ files

    with open("ground_truth/ground.txt", "a") as f:
        f.write(str(img_path) + '\n')

你可能感兴趣的:(Python 利用os 获取文件夹中每一张图片的名字 并保存至 txt)