Skip to content

Instantly share code, notes, and snippets.

@tarcisio-marinho
Last active December 13, 2017 17:38
Show Gist options
  • Save tarcisio-marinho/ff401547cb4528401dd380f9966cc01d to your computer and use it in GitHub Desktop.
Save tarcisio-marinho/ff401547cb4528401dd380f9966cc01d to your computer and use it in GitHub Desktop.
Walkthrought filesystem
import os
for a, b, c in os.walk(os.getcwd()):
for file in c:
print(os.path.join(file, a))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment