Home | About | Apps | Github | Rss

List directories in python

Its pretty straight forward to list files, by using:

import glob
print glob.glob("*")

Listing directories especially only those in current level requires the use of os.walk

os.walk('content/').next()[1]

More posts