/getFilenames.py Secret
Created
May 14, 2015 04:06
This file contains 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
from os import walk | |
def getFilename(directory): | |
"""Get all the file names in the directory. Return a filename list.""" | |
f = [] | |
for (dirpath, dirnames, filenames) in walk(directory): | |
f.extend(filenames) | |
break | |
#f contains all the file names in the directory | |
return f |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment