-
Notifications
You must be signed in to change notification settings - Fork 5
/
Gerenciador Bloco de Notas.ahk
218 lines (215 loc) · 5.33 KB
/
Gerenciador Bloco de Notas.ahk
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
SetKeyDelay, 10, 10
Run, notepad,,, pid
WinWait, ahk_pid %pid%
Sleep, 500
inicio:
ControlSendRaw, Edit1, -GERENCIADOR DE ARQUIVOS-, ahk_pid %pid%
Sleep, 500
ControlSend, Edit1, {Enter 2}
Sleep, 500
ControlSendRaw, Edit1, Selecione um diretório:, ahk_pid %pid%
Sleep, 500
FileSelectFolder, diretorio
Sleep, 500
if ErrorLevel
{
ControlSend, Edit1, {Enter 2}
Sleep, 500
ControlSendRaw, Edit1, Você não selecionou um diretório..., ahk_pid %pid%
Sleep, 500
ControlSetText, Edit1,, ahk_pid %pid%
WinClose
return
}
Sleep, 500
ControlSend, Edit1, {Enter 2}
Sleep, 500
ControlSendRaw, Edit1, Listando diretório %diretorio%, ahk_pid %pid%
Sleep, 500
SetKeyDelay, 500, 500
ControlSendRaw, Edit1, ..., ahk_pid %pid%
SetKeyDelay, 10, 10
Sleep, 500
arquivos := []
arquivos1 := []
Loop Files, %diretorio%\*.*
{
arquivos.Push(A_Index . " - " . A_LoopFileName)
}
Loop Files, %diretorio%\*.*
{
arquivos1.Push(A_LoopFileName)
}
ControlSend, Edit1, {Enter 2}
Sleep, 500
Loop % arquivos.Length()
{
lista := arquivos[A_Index]
ControlSend, Edit1, %lista%, ahk_pid %pid%
ControlSend, Edit1, {Enter}
}
Sleep, 500
ControlSend, Edit1, {Enter}
Sleep, 500
ControlSendRaw, Edit1, Digite o número do arquivo desejado e pressione Enter:, ahk_pid %pid%
Sleep, 500
ControlSend, Edit1, {Enter}
KeyWait, Enter, D
ControlGet, linha1, CurrentLine,, Edit1, ahk_pid %pid%
ControlGet, arq, Line, % linha1 - 1, Edit1, ahk_pid %pid%
selec := arquivos[arq]
selec1 := arquivos1[arq]
Sleep, 500
ControlSend, Edit1, {Enter}
Sleep, 500
ControlSendRaw, Edit1, -OPÇÕES-`n`n1 - Abrir %selec1%`n2 - Mover %selec1%`n3 - Copiar %selec1%`n4 - Deletar %selec1%, ahk_pid %pid%
Sleep, 500
ControlSend, Edit1, {Enter 2}
Sleep, 500
ControlSend, Edit1, Digite uma opção e pressione Enter:, ahk_pid %pid%
Sleep, 500
ControlSend, Edit1, {Enter}
KeyWait, Enter, D
ControlGet, linha2, CurrentLine,, Edit1, ahk_pid %pid%
ControlGet, opcao, Line, % linha - 1, Edit1, ahk_pid %pid%
Sleep, 500
ControlSend, Edit1, {Enter}
Sleep, 500
Switch opcao
{
Case 1:
ControlSend, Edit1, Abrindo %selec1%, ahk_pid %pid%
Sleep, 500
SetKeyDelay, 500, 500
ControlSendRaw, Edit1, ..., ahk_pid %pid%
SetKeyDelay, 10, 10
Sleep, 500
Run, %diretorio%\%selec1%
Case 2:
ControlSendRaw, Edit1, Selecione o diretório de destino:, ahk_pid %pid%
Sleep, 500
FileSelectFolder, diretorio2
Sleep, 500
if ErrorLevel
{
ControlSend, Edit1, {Enter 2}
Sleep, 500
ControlSendRaw, Edit1, Você não selecionou um diretório..., ahk_pid %pid%
Sleep, 500
ControlSetText, Edit1,, ahk_pid %pid%
WinClose
return
}
Sleep, 500
ControlSend, Edit1, {Enter 2}
Sleep, 500
ControlSendRaw, Edit1, Movendo o arquivo %selec1% para o diretório %diretorio2%, ahk_pid %pid%
Sleep, 500
SetKeyDelay, 500, 500
ControlSendRaw, Edit1, ..., ahk_pid %pid%
SetKeyDelay, 10, 10
Sleep, 500
FileMove, %diretorio%\%selec1%, %diretorio2%
ControlSend,, {F5}, ahk_class Progman
Sleep, 500
ControlSend, Edit1, {Enter 2}
Sleep, 500
ControlSendRaw, Edit1, Arquivo movido com sucesso!, ahk_pid %pid%
Sleep, 500
Case 3:
ControlSendRaw, Edit1, Selecione o diretório de destino:, ahk_pid %pid%
Sleep, 500
FileSelectFolder, diretorio3
Sleep, 500
if ErrorLevel
{
ControlSend, Edit1, {Enter 2}
Sleep, 500
ControlSendRaw, Edit1, Você não selecionou um diretório..., ahk_pid %pid%
Sleep, 500
ControlSetText, Edit1,, ahk_pid %pid%
WinClose
return
}
Sleep, 500
ControlSend, Edit1, {Enter 2}
Sleep, 500
ControlSendRaw, Edit1, Copiando o arquivo %selec1% para o diretório %diretorio3%, ahk_pid %pid%
Sleep, 500
SetKeyDelay, 500, 500
ControlSendRaw, Edit1, ..., ahk_pid %pid%
SetKeyDelay, 10, 10
Sleep, 500
FileCopy, %diretorio%\%selec1%, %diretorio3%
Sleep, 500
ControlSend, Edit1, {Enter 2}
Sleep, 500
ControlSendRaw, Edit1, Arquivo copiado com sucesso!, ahk_pid %pid%
Sleep, 500
Case 4:
ControlSendRaw, Edit1, Deletando o arquivo %selec1%, ahk_pid %pid%
Sleep, 500
SetKeyDelay, 500, 500
ControlSendRaw, Edit1, ..., ahk_pid %pid%
SetKeyDelay, 10, 10
Sleep, 500
FileDelete, %diretorio%\%selec1%
ControlSend,, {F5}, ahk_class Progman
Sleep, 500
ControlSend, Edit1, {Enter 2}
Sleep, 500
ControlSendRaw, Edit1, Arquivo deletado com sucesso!, ahk_pid %pid%
Sleep, 500
Default:
MsgBox, Opção inválida!
Sleep, 500
ControlSetText, Edit1,, ahk_pid %pid%
WinClose
return
}
Sleep, 1000
if (opcao = 1)
{
IfWinNotActive, ahk_pid %pid%
{
WinWaitActive, ahk_pid %pid%
}
}
Sleep, 500
ControlSend, Edit1, {Enter 2}
Sleep, 500
ControlSendRaw, Edit1, -OPÇÔES-`n`n1 - Escolher novo diretório`n2 - Sair , ahk_pid %pid%
Sleep, 500
ControlSend, Edit1, {Enter 2}
Sleep, 500
ControlSendRaw, Edit1, Digite uma opção e pressione Enter:, ahk_pid %pid%
Sleep, 500
ControlSend, Edit1, {Enter}
KeyWait, Enter, D
ControlGet, linha3, CurrentLine,, Edit1, ahk_pid %pid%
ControlGet, opcao2, Line, % linha - 1, Edit1, ahk_pid %pid%
Sleep, 1000
Switch opcao2
{
Case 1:
ControlSetText, Edit1,, ahk_pid %pid%
Sleep, 500
goto, inicio
Case 2:
ControlSend, Edit1, {Enter}
Sleep, 500
ControlSendRaw, Edit1, Saindo, ahk_pid %pid%
Sleep, 500
SetKeyDelay, 500, 500
ControlSendRaw, Edit1, ..., ahk_pid %pid%
SetKeyDelay, 10, 10
Sleep, 500
ControlSetText, Edit1,, ahk_pid %pid%
WinClose
Default:
MsgBox, Opção inválida!
Sleep, 500
ControlSetText, Edit1,, ahk_pid %pid%
WinClose
return
}