python-CSD-kursu/python-temel/os.walk.py

4 lines
65 B
Python

import os
for root, dirs, files in os.walk('/'):
print(root)