12 lines
285 B
Python
12 lines
285 B
Python
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))
|