This commit is contained in:
2025-11-24 15:15:49 +01:00
parent f41b2c43bc
commit b8038593ab
7 changed files with 1354 additions and 74 deletions

11
40 Test3.py Normal file
View File

@@ -0,0 +1,11 @@
import os
base = r"u:\Dropbox\Ordinace\Dokumentace_ke_zpracování"
print("Listing folders in:", base)
print("--------------------------------------")
for name in os.listdir(base):
full = os.path.join(base, name)
if os.path.isdir(full):
print("FOLDER:", repr(name))