Created
June 6, 2019 16:06
-
-
Save ruslangrimov/095efd714ec3ca53f97385c08de5ad20 to your computer and use it in GitHub Desktop.
Get list of full file names
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
files = [os.path.join(r, f) for r, d, fs in os.walk(PATH) for f in fs if f.endswith('.png')] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment