Skip to content

Instantly share code, notes, and snippets.

@managai
Last active December 14, 2015 02:39
Show Gist options
  • Save managai/5015313 to your computer and use it in GitHub Desktop.
Save managai/5015313 to your computer and use it in GitHub Desktop.
list of all files (and directories) in a given directory
import os
for dirname, dirnames, filenames in os.walk('.'):
# print path to all subdirectories first.
for subdirname in dirnames:
print os.path.join(dirname, subdirname)
# print path to all filenames.
for filename in filenames:
print os.path.join(dirname, filename)
# Advanced usage:
# editing the 'dirnames' list will stop os.walk() from recursing into there.
if '.git' in dirnames:
# don't go into any .git directories.
dirnames.remove('.git')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment