Files
ou-python/learning/02-file-scanner/scanner.py
T
2026-07-19 17:15:54 +01:00

8 lines
302 B
Python

import os
if __name__ == "__main__":
for root, dirs, files in os.walk("/home/url/repos/ou-python"):
for file in files:
full_path = os.path.join(root, file)
if os.path.getsize(full_path) > 100:
print(full_path, os.path.getsize(full_path))