z230
This commit is contained in:
11
40 Test3.py
Normal file
11
40 Test3.py
Normal 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))
|
||||
Reference in New Issue
Block a user