I want to be able to list only the directories inside some folder. This means I don\'t want filenames listed, nor do I want additional sub-folders.
Let\'s see if an
This seems to work too (at least on linux):
import glob, os glob.glob('*' + os.path.sep)