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

4 lines
61 B
Python

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