8 lines
186 B
Python
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) |