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 |
No comments:
Post a Comment