How would I create a list from a handful of images in a folder? I need the full file path to each one included. For example,
Image files:
C:\data\images\image.jpeg
C:\data\images\image.jpeg2
C:\data\images\image.jpeg3
How do I avoid using the full path for each element:
list = [r'C:\data\images\image.jpeg', r'C:\data\images\image.jpeg2', r'C:\data\images\image.jpeg3']
Solved! Go to Solution.
Read the folder...