4 lines
78 B
Python
4 lines
78 B
Python
from pathlib import Path
|
|
|
|
for path in Path('.').rglob('*.*'):
|
|
print(path)
|