-
Notifications
You must be signed in to change notification settings - Fork 0
/
sorting.py
48 lines (31 loc) · 1.3 KB
/
sorting.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import os, sys
import shutil
PATH = os.path.join('D:\\', 'Prenosi')
slovar = {"dokumenti":(".docx", ".pdf", ".epub", ".xlsx"), "slike":(".jpg", ".png", ".svg", ".ai"), "zip":(".zip", ".rar"), "video":(".mp4", ".avi")}
def premakni_datoteke(path_mape, slovar):
"""presortira datoteke glede napodno lokacijo in slovar"""
datoteke = os.listdir(path_mape)
#print(datoteke)
for i in slovar:
path_dir = os.path.join(path_mape, i)
os.mkdir(path_dir)
path_ostale = os.path.join(path_mape, "ostale_mape")
os.mkdir(path_ostale)
path_razno = os.path.join(path_mape, "razno")
os.mkdir(path_razno)
for datoteka in datoteke:
path_dir = os.path.join(path_mape, datoteka)
if os.path.isdir(path_dir):
shutil.move(path_dir, path_ostale)
elif datoteka.lower().endswith((".igs")):
os.remove(path_dir)
else:
for mapa, koncnice in slovar.items():
new_path_dir = os.path.join(path_mape, mapa, datoteka)
if datoteka.lower().endswith(koncnice):
shutil.move(path_dir, new_path_dir)
print(datoteka, "je premaknjena")
break
else:
shutil.move(path_dir, path_razno)
#premakni_datoteke(PATH, slovar)