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]
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]