txt added

This commit is contained in:
hubobel 2025-12-23 20:33:45 +01:00
parent e31ce07f05
commit 4547688686
121 changed files with 415 additions and 0 deletions

7
test.py Normal file
View file

@ -0,0 +1,7 @@
from pathlib import Path
for datei in Path("Universal_txts/Windows").glob("*.txt"):
with open(datei, "r", encoding="utf-8") as f:
print(f"Datei: {datei.name}")
print(f.read())