Pages

May 13, 2015

[Python] get all file names in a directory

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
view raw getFilenames.py hosted with ❤ by GitHub

No comments:

Post a Comment