Is there a way to return a list of all the subdirectories in the current directory in Python?
I know you can do this with files, but I need to get the list of direct
With full path and accounting for path being ., .., \\, ..\\..\\subfolder, etc:
.
..
\\
..\\..\\subfolder
import os, pprint pprint.pprint([os.path.join(os.path.abspath(path), x[0]) \ for x in os.walk(os.path.abspath(path))])