To traverse every file and directory in a directory tree you can use the following piece of code:-
import os for dirname, dirnames, filenames in os.walk('.'):
for subdirname in dirnames:
print(os.path.join(dirname, subdirname))
for filename in filenames:
print(os.path.join(dirname, filename))
Another way by which you can list all the Directory trees in Python is by using the following piece of code:-
os.listdir(path)
If you are looking for upskilling yourself in python you can join our Python Certification and learn from the industrial expert!