Skip to content

Instantly share code, notes, and snippets.

@muukii
Last active August 29, 2015 14:01
Show Gist options
  • Save muukii/a50c0cfbe4931016145b to your computer and use it in GitHub Desktop.
Save muukii/a50c0cfbe4931016145b to your computer and use it in GitHub Desktop.
Python 全ファイル表示
def findAllFiles(path):
for root, dirs, files in os.walk(os.path.expanduser(path)):
yield root
for file in files:
yield os.path.join(root, file)
for file in findAllFiles(''):
print (file)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment