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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
| from tkinter import *
import os
import shutil
global L,plist,newPath
def updateMouseButton(event):
global L,plist,newPath
index=MAIN.curselection()[0]#смотрит какой элемент выбран
name=L[index]#узнает имя выбранного элемента по индексу
path=plist[-1]
newPath=path+'\\'+name #создает новый путь с учетом прошлого элемента
os.chdir(newPath)#меняет рабочий каталог
plist.append(newPath)
L.clear()#очищает список с папками
L=os.listdir()#смотрит папки в папке
size=MAIN.size()
MAIN.delete(0,size)#удаляет все и listbox
for i in L:
MAIN.insert(END,i)#вставляет новые значения в listbox
label['text']=newPath
print('forward')
return newPath
def updateProgramButton():
global L,plist,newPath
index=MAIN.curselection()[0]#смотрит какой элемент выбран
name=L[index]#узнает имя выбранного элемента по индексу
path=plist[-1]
newPath=path+'\\'+name #создает новый путь с учетом прошлого элемента
os.chdir(newPath)#меняет рабочий каталог
plist.append(newPath)
L.clear()#очищает список с папками
L=os.listdir()#смотрит папки в папке
size=MAIN.size()
MAIN.delete(0,size)#удаляет все и listbox
for i in L:
MAIN.insert(END,i)#вставляет новые значения в listbox
label['text']=newPath
print('forward')
def back():
global L,plist
if len(plist)==1:
newPath=plist[-1]
else:
newPath=plist.pop()
newPath=plist[-1]
os.chdir(newPath)#меняет рабочий каталог
L.clear()#очищает список с папками
L=os.listdir()#смотрит папки в папке
size=MAIN.size()
MAIN.delete(0,size)#удаляет все и listbox
for i in L:
MAIN.insert(END,i)#вставляет новые значения в listbox
label['text']=newPath
print('back')
def OpenFile():
global newPath,L
index=MAIN.curselection()[0]
name=L[index]
os.startfile(newPath+'\\'+name)
print('opened')
def Delete():
global newPath,L
index=MAIN.curselection()[0]#смотрит какой элемент выбран
print(newPath)
name=L[index]#узнает имя выбранного элемента по индексу
print(newPath)
f=os.path.isfile(newPath+'\\'+name)
d=os.path.isdir(newPath)
if f==False:
if len(os.listdir(newPath))==0:
os.rmdir(newPath+'\\'+name)
else:
shutil.rmtree(newPath+'\\'+name)
print('folder deleted')
L=os.listdir()
size=MAIN.size()
MAIN.delete(0,size)
for i in L:
MAIN.insert(END,i)
elif f==True:
os.remove(newPath+'\\'+name)
print('file deleted')
L.clear()
L=os.listdir()
size=MAIN.size()
MAIN.delete(0,size)
for i in L:
MAIN.insert(END,i)
def Functions(event):
FuncWindow=Toplevel(root)
FuncWindow.geometry('225x100')
x=root.winfo_rootx()
y=root.winfo_rooty()
FuncWindow.wm_geometry("+%d+%d" % (x+650, y))
button0=Button(FuncWindow,text='Создать',)
button0.place(x=15,y=0)
button1=Button(FuncWindow,text='Удалить',command=Delete)
button1.place(x=15,y=30)
entry=Entry(FuncWindow)
entry.place(x=115,y=60,width=90,height=26)
n=entry.get()
Rename(n)
button2=Button(FuncWindow,text='Переименовать',font='Arial 8',command=Rename(n))
button2.place(x=15,y=60)
def Rename(n):
global L,newPath
index=MAIN.curselection()[0]
name=L[index]
print(n,'a')
os.rename(newPath+'\\'+name,newPath+'\\'+n)
print('renamed')
L.clear()
L=os.listdir()
size=MAIN.size()
MAIN.delete(0,size)
for i in L:
MAIN.insert(END,i)
root=Tk()
root.geometry('600x500')
x=(root.winfo_screenwidth() - root.winfo_reqwidth())/2.5
y=(root.winfo_screenheight() - root.winfo_reqheight())/2.5
root.wm_geometry("+%d+%d" % (x, y))
MAIN=Listbox(root,selectmode=EXTENDED)
scrollMAIN=Scrollbar(root,command=MAIN.yview)
MAIN.configure(yscrollcommand=scrollMAIN.set)
MAIN.place(x=0,y=50,height=450,width=600)
scrollMAIN.pack(side=RIGHT,fill=Y)
MAIN.bind('<Double-Button-1>',updateMouseButton)
MAIN.bind('<Double-Button-3>',Functions)
button1=Button(root,text='Вперёд',command=updateProgramButton)
button1.place(x=45,y=20)
button2=Button(root,text='Назад',command=back)
button2.place(x=0,y=20)
button3=Button(root,text='Открыть(файл)',font='Arial 8',command=OpenFile)
button3.place(x=490,y=20)
label=Label(root,bg='white')
label.place(x=100,y=20,height=26,width=220)
path='D:'
os.chdir('D:\\') #работаем с диском d
L=os.listdir()#смотрит папки на диске
plist=["d:\\"]
for i in L:
MAIN.insert(END,i)
root.mainloop() |