-
Notifications
You must be signed in to change notification settings - Fork 0
/
FrmCompactador.cs
248 lines (228 loc) · 10.4 KB
/
FrmCompactador.cs
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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
using System;
using System.Windows.Forms;
using Vip.Notification;
using System.IO;
using Holtz_Compactador;
using System.Diagnostics;
namespace Holtz_Compacta
{
public partial class FrmCompactador : Form
{
public FrmCompactador()
{
InitializeComponent();
}
private void FrmCompactador_Load(object sender, EventArgs e)
{
LoadConfig.CarregaJson();
comboTipo.SelectedItem = LoadConfig.ParTipo;
TxtCaminhoOrigem.Text = LoadConfig.ParCaminhoOrigem;
txtCaminhoDestino.Text = LoadConfig.ParCaminhoDestino;
txtNomeArquivo.Text = LoadConfig.ParNomeArquivo;
checkSalvarOrigem.Checked = true;
checkSalvarDestino.Checked = true;
checkSalvarTipo.Checked = true;
checkSalvarNomeArquivo.Checked = true;
}
private void imgConfigCaminhoDestino_Click(object sender, EventArgs e)
{
if (folderDialog.ShowDialog() != DialogResult.OK) return;
txtCaminhoDestino.Text = folderDialog.SelectedPath.ToString();
}
private void imgConfigCaminhoOrigem_Click(object sender, EventArgs e)
{
if (folderDialog.ShowDialog() != DialogResult.OK) return;
TxtCaminhoOrigem.Text = folderDialog.SelectedPath.ToString();
}
private void BtnGerar_Click(object sender, EventArgs e)
{
try
{
if (comboTipo.SelectedItem == null) { throw new CompactorException("Você deve selecionar um Tipo de compactação!"); }
Verifica(comboTipo.SelectedItem.ToString(), TxtCaminhoOrigem.Text, txtCaminhoDestino.Text, txtNomeArquivo.Text);
//Salva na classe, e de lá com o método 'GravaJson()' salva no arquivo físico (Config.json);
if (checkSalvarTipo.Checked == true) { LoadConfig.ParTipo = comboTipo.SelectedItem.ToString(); }
if (checkSalvarOrigem.Checked == true) { LoadConfig.ParCaminhoOrigem = TxtCaminhoOrigem.Text; }
if (checkSalvarDestino.Checked == true) { LoadConfig.ParCaminhoDestino = txtCaminhoDestino.Text; }
if (checkSalvarNomeArquivo.Checked == true) { LoadConfig.ParNomeArquivo = txtNomeArquivo.Text; }
LoadConfig.GravaJson();
Compactor.Compact(TxtCaminhoOrigem.Text, txtCaminhoDestino.Text, txtNomeArquivo.Text, comboTipo.SelectedItem.ToString());
}
catch (CompactorException ex)
{
MessageBox.Show(ex.Message, ex.Title, MessageBoxButtons.OK, MessageBoxIcon.Error);
}
BtnGerar.Enabled = true;
BtnGerarSemGravar.Enabled = true;
txtCaminhoDestino.Enabled = true;
txtNomeArquivo.Enabled = true;
TxtCaminhoOrigem.Enabled = true;
checkSalvarDestino.Enabled = true;
checkSalvarOrigem.Enabled = true;
extensoesToolStripMenuItem.Enabled = true;
comboTipo.Enabled = true;
imgConfigCaminhoDestino.Enabled = true;
imgConfigCaminhoOrigem.Enabled = true;
}
private void BtnGerarSemGravar_Click(object sender, EventArgs e)
{
try
{
if (comboTipo.SelectedItem == null) { throw new CompactorException("Você deve selecionar um Tipo de compactação!"); }
Verifica(comboTipo.SelectedItem.ToString(), TxtCaminhoOrigem.Text, txtCaminhoDestino.Text, txtNomeArquivo.Text);
Compactor.Compact(TxtCaminhoOrigem.Text, txtCaminhoDestino.Text, txtNomeArquivo.Text, comboTipo.SelectedItem.ToString());
}
catch (CompactorException ex)
{
MessageBox.Show(ex.Message, ex.Title, MessageBoxButtons.OK, MessageBoxIcon.Error);
}
BtnGerar.Enabled = true;
BtnGerarSemGravar.Enabled = true;
txtCaminhoDestino.Enabled = true;
txtNomeArquivo.Enabled = true;
TxtCaminhoOrigem.Enabled = true;
checkSalvarDestino.Enabled = true;
checkSalvarOrigem.Enabled = true;
checkSalvarTipo.Enabled = true;
checkSalvarNomeArquivo.Enabled = true;
extensoesToolStripMenuItem.Enabled = true;
comboTipo.Enabled = true;
imgConfigCaminhoDestino.Enabled = true;
imgConfigCaminhoOrigem.Enabled = true;
}
private void Verifica(string ParTipo, string ParCaminhoOrigem, string ParCaminhoDestino, string ParNomeArquivo)
{
BtnGerar.Enabled = false;
BtnGerarSemGravar.Enabled = false;
txtCaminhoDestino.Enabled = false;
txtNomeArquivo.Enabled = false;
TxtCaminhoOrigem.Enabled = false;
checkSalvarDestino.Enabled = false;
checkSalvarOrigem.Enabled = false;
checkSalvarTipo.Enabled = false;
checkSalvarNomeArquivo.Enabled = false;
extensoesToolStripMenuItem.Enabled = false;
comboTipo.Enabled = false;
imgConfigCaminhoDestino.Enabled = false;
imgConfigCaminhoOrigem.Enabled = false;
if (ParCaminhoOrigem.Length <= 3)
{
throw new CompactorException(" O caminho de origem não está válido. Verifique!");
}
if (ParCaminhoDestino.Length <= 3)
{
throw new CompactorException(" O caminho de Destino não está válido. Verifique!");
}
if (ParTipo.Length != 4)
{
throw new CompactorException(" O Tipo não é válido. Utilize '.RAR' ou '.ZIP'");
}
if (/*ParNomeArquivo ==*/ String.IsNullOrWhiteSpace(ParNomeArquivo) /* .Length == 0*/)
{
throw new CompactorException(" O Nome do arquivo não pode ser vazio.");
}
if (File.Exists(ParCaminhoDestino + @"\" + ParNomeArquivo + ParTipo.ToLower()))
{
throw new CompactorException("Já existe um arquivo com o nome escolhido, e a mesma extensão.Exclua o arquivo ou escolha outro nome.");
}
}
private void txtComoFunciona_Click(object sender, EventArgs e)
{
FrmSobre msg = new FrmSobre();
msg.ShowDialog();
}
private void extensoesToolStripMenuItem_Click(object sender, EventArgs e)
{
FrmExcecoes exc = new FrmExcecoes();
exc.ShowDialog();
}
private void imgOpenCaminhoOrigem_Click(object sender, EventArgs e)
{
if (Directory.Exists(TxtCaminhoOrigem.Text))
{
Process.Start(TxtCaminhoOrigem.Text);
}
else
{
Alert.ShowError("Esta pasta não existe ou não foi localizada. Verifique!");
}
}
private void imgOpenZip_Click(object sender, EventArgs e)
{
string file = txtCaminhoDestino.Text + "\\" + txtNomeArquivo.Text + comboTipo.SelectedItem.ToString();
if (File.Exists(file))
{
Process.Start(file);
}
else
{
Alert.ShowError("Este Arquivo não existe ou não foi localizado. Verifique!");
}
}
private void imgOpenCaminhoDestino_Click(object sender, EventArgs e)
{
if (Directory.Exists(txtCaminhoDestino.Text))
{
Process.Start(txtCaminhoDestino.Text);
}
else
{
Alert.ShowError("Esta pasta não existe ou não foi localizada. Verifique!");
}
}
private void limparConfiguraçõesToolStripMenuItem_Click(object sender, EventArgs e)
{
DialogResult result = MessageBox.Show("Tem certeza que deseja excluir as configurações? Essa opção não pode ser revertida.", "Excluir Configurações", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
if (result == DialogResult.Yes)
{
string CaminhoArquivoExt = Path.GetDirectoryName(System.AppDomain.CurrentDomain.BaseDirectory);
string caminhoArquivo = Directory.GetParent(Directory.GetParent(CaminhoArquivoExt).FullName).FullName;
caminhoArquivo += @"\Config.json";
using (StreamWriter sr = new StreamWriter(caminhoArquivo))
{
sr.Write("");
}
LoadConfig.CarregaJson();
comboTipo.SelectedItem = null;
TxtCaminhoOrigem.Text = LoadConfig.ParCaminhoOrigem;
txtCaminhoDestino.Text = LoadConfig.ParCaminhoDestino;
txtNomeArquivo.Text = LoadConfig.ParNomeArquivo;
checkSalvarOrigem.Checked = true;
checkSalvarDestino.Checked = true;
checkSalvarTipo.Checked = true;
checkSalvarNomeArquivo.Checked = true;
Alert.ShowSucess("Todas Exceções foram excluídas.");
}
else
{
Alert.ShowInformation("Operação Cancelada. Nenhuma Exceção foi removida.");
}
}
private void limparExceçõesToolStripMenuItem_Click(object sender, EventArgs e)
{
DialogResult result = MessageBox.Show("Tem certeza que deseja excluir as configurações? Essa opção não pode ser revertida.", "Excluir Configurações", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
if (result == DialogResult.Yes)
{
string CaminhoArquivoExt = Path.GetDirectoryName(System.AppDomain.CurrentDomain.BaseDirectory);
string caminhoArquivo = Directory.GetParent(Directory.GetParent(CaminhoArquivoExt).FullName).FullName;
string arquivo = caminhoArquivo + @"\Pastas.json";
using (StreamWriter sr = new StreamWriter(arquivo))
{
sr.Write("");
}
arquivo = String.Empty;
arquivo = caminhoArquivo + @"\Extensoes.json";
using (StreamWriter sr = new StreamWriter(arquivo))
{
sr.Write("");
}
LoadExcecoes.ClearAll();
Alert.ShowSucess("Todas Exceções foram excluídas.");
}
else
{
Alert.ShowInformation("Operação Cancelada. Nenhuma configuração foi removida.");
}
}
}
}