Skip to content

Instantly share code, notes, and snippets.

@ruslangrimov
Created June 6, 2019 16:06
Show Gist options
  • Save ruslangrimov/095efd714ec3ca53f97385c08de5ad20 to your computer and use it in GitHub Desktop.
Save ruslangrimov/095efd714ec3ca53f97385c08de5ad20 to your computer and use it in GitHub Desktop.
Get list of full file names
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