Skip to content

Instantly share code, notes, and snippets.

@yeephycho
yeephycho / Generate_Image_Filename_List.py
Created January 24, 2017 08:16
Find all *.jpg images under a folder in python
import os
from glob import glob
filename_list = glob(os.path.join("./image_folder", "*.jpg"))
for filename in filename_list:
print filename