Skip to content

Instantly share code, notes, and snippets.

@jasonlingo
Created May 14, 2015 04:06
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