Files
reporty/30 Import VZP číselníky.py
2025-10-12 10:23:17 +02:00

8 lines
186 B
Python

import os
from Functions import get_path_ciselniky
cesta=get_path_ciselniky()
print(cesta)
files = [f for f in os.listdir(cesta) if os.path.isfile(os.path.join(cesta, f))]
print(files)