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
directories=[d for d in os.listdir(os.getcwd()) if os.path.isdir(d)]