Search Results

0
votes

How to list only top level directories in Python?

Filter the list using os.path.isdir to detect directories. >>> filter (os.path.isdir, os.listdir(os.getcwd()))` …