-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
305 lines (296 loc) · 11.1 KB
/
Program.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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
using System;
using System.Diagnostics;
using System.IO;
using System.Security.Cryptography;
using System.Text;
namespace winexpext // Windows Explorer Extension
{
class Program
{
enum FileAction : int
{
timestampCopy,
timestampRename,
hashMD5,
hashSHA1,
hashSHA256,
hashSHA384,
hashSHA512
}
static void Main(string[] args)
{
try
{
if (args.Length < 2) ShowHelp("Usage");
FileAction action;
if (!Enum.TryParse<FileAction>(args[0], out action))
{
ShowHelp($"Unrecognized command: {args[0]}");
}
Console.WriteLine($"");
var pauseForOperatorMessage = false;
for (var index = 1; index < args.Length; index++)
{
if (!File.Exists(args[index]))
{
Console.WriteLine($"file not found: {args[index]}");
pauseForOperatorMessage = true;
continue;
}
Console.Write($" processing: {args[index]}: ");
try
{
switch (action)
{
case FileAction.timestampRename:
TimestampedCopyOrRename(args[index], false);
Console.WriteLine("OK");
break;
case FileAction.timestampCopy:
TimestampedCopyOrRename(args[index], true);
Console.WriteLine("OK");
break;
case FileAction.hashMD5:
CalculateMD5(args[index]);
Console.WriteLine("OK");
break;
case FileAction.hashSHA1:
CalculateSHA1(args[index]);
Console.WriteLine("OK");
break;
case FileAction.hashSHA256:
CalculateSHA256(args[index]);
Console.WriteLine("OK");
break;
case FileAction.hashSHA384:
CalculateSHA384(args[index]);
Console.WriteLine("OK");
break;
case FileAction.hashSHA512:
CalculateSHA512(args[index]);
Console.WriteLine("OK");
break;
default:
Console.WriteLine($"No method for defined action \"{action}\"");
break;
}
}
catch (Exception err)
{
Console.WriteLine($"Action failed. \"{err.Message}\"");
pauseForOperatorMessage = true;
}
}
if (pauseForOperatorMessage)
{
Console.WriteLine($"Completed, with one or more problems.. press any key to close.");
Console.ReadKey();
}
System.Environment.Exit(pauseForOperatorMessage ? 1 : 0);
}
catch (Exception err)
{
// Wait for user key press to clear any error
Console.WriteLine(err.Message);
Console.WriteLine("Press any key to clear...");
Console.ReadKey();
System.Environment.Exit(3);
}
}
static void ShowHelp(string message)
{
if (!string.IsNullOrWhiteSpace(message))
{
Console.WriteLine(message);
Console.WriteLine();
}
Console.WriteLine("winexpext command [options]");
Console.WriteLine();
Console.WriteLine("winexpext timestampedCopy sourceFile [sourceFile2 [...]]");
Console.WriteLine("winexpext timestampedRename sourceFile [sourceFile2 [...]]");
System.Environment.Exit(2);
}
static void TimestampedCopyOrRename(string filename, bool isCopy)
{
var datetimePortion = File.GetLastWriteTime(filename).ToString("-yyyyMMdd-HHmmss");
var newFileName = Path.Combine(
Path.GetDirectoryName(filename),
Path.GetFileNameWithoutExtension(filename) + datetimePortion + Path.GetExtension(filename)
);
Console.WriteLine($"{filename} --> {newFileName}");
if (isCopy)
{
File.Copy(filename, newFileName);
}
else
{
File.Move(filename, newFileName);
}
}
static void CalculateMD5(string filename)
{
var resultFile = Path.Combine(
Path.GetTempPath(),
filename + ".md5.txt");
using (var sw = new StreamWriter(resultFile, false))
{
sw.WriteLine($"MD5 for {filename}...");
sw.WriteLine();
using (var stream = new FileStream(
filename,
FileMode.Open,
FileAccess.Read,
FileShare.Read,
4096,
FileOptions.SequentialScan))
{
sw.WriteLine(BitConverter
.ToString(MD5.Create().ComputeHash(stream))
.ToLowerInvariant().Replace("-", string.Empty));
}
sw.WriteLine();
var s = DateTime.Now.ToString("f");
sw.WriteLine($"Generated On: {s}...");
}
var p = new ProcessStartInfo
{
ErrorDialog = true,
FileName = resultFile,
UseShellExecute = true
};
Process.Start(p);
}
static void CalculateSHA1(string filename)
{
var resultFile = Path.Combine(
Path.GetTempPath(),
filename + ".sha1.txt");
using (var sw = new StreamWriter(resultFile, false))
{
sw.WriteLine($"SHA1 for {filename}...");
sw.WriteLine();
using (var stream = new FileStream(
filename,
FileMode.Open,
FileAccess.Read,
FileShare.Read,
4096,
FileOptions.SequentialScan))
{
sw.WriteLine(BitConverter
.ToString(SHA1.Create().ComputeHash(stream))
.ToLowerInvariant().Replace("-", string.Empty));
}
sw.WriteLine();
var s = DateTime.Now.ToString("f");
sw.WriteLine($"Generated On: {s}...");
}
var p = new ProcessStartInfo
{
ErrorDialog = true,
FileName = resultFile,
UseShellExecute = true
};
Process.Start(p);
}
static void CalculateSHA256(string filename)
{
var resultFile = Path.Combine(
Path.GetTempPath(),
filename + ".sha256.txt");
using (var sw = new StreamWriter(resultFile, false))
{
sw.WriteLine($"SHA256 for {filename}...");
sw.WriteLine();
using (var stream = new FileStream(
filename,
FileMode.Open,
FileAccess.Read,
FileShare.Read,
4096,
FileOptions.SequentialScan))
{
sw.WriteLine(BitConverter
.ToString(SHA256.Create().ComputeHash(stream))
.ToLowerInvariant().Replace("-", string.Empty));
}
sw.WriteLine();
var s = DateTime.Now.ToString("f");
sw.WriteLine($"Generated On: {s}...");
}
var p = new ProcessStartInfo
{
ErrorDialog = true,
FileName = resultFile,
UseShellExecute = true
};
Process.Start(p);
}
static void CalculateSHA384(string filename)
{
var resultFile = Path.Combine(
Path.GetTempPath(),
filename + ".sha384.txt");
using (var sw = new StreamWriter(resultFile, false))
{
sw.WriteLine($"SHA384 for {filename}...");
sw.WriteLine();
using (var stream = new FileStream(
filename,
FileMode.Open,
FileAccess.Read,
FileShare.Read,
4096,
FileOptions.SequentialScan))
{
sw.WriteLine(BitConverter
.ToString(SHA384.Create().ComputeHash(stream))
.ToLowerInvariant().Replace("-", string.Empty));
}
sw.WriteLine();
var s = DateTime.Now.ToString("f");
sw.WriteLine($"Generated On: {s}...");
}
var p = new ProcessStartInfo
{
ErrorDialog = true,
FileName = resultFile,
UseShellExecute = true
};
Process.Start(p);
}
static void CalculateSHA512(string filename)
{
var resultFile = Path.Combine(
Path.GetTempPath(),
filename + ".sha512.txt");
using (var sw = new StreamWriter(resultFile, false))
{
sw.WriteLine($"SHA512 for {filename}...");
sw.WriteLine();
using (var stream = new FileStream(
filename,
FileMode.Open,
FileAccess.Read,
FileShare.Read,
4096,
FileOptions.SequentialScan))
{
sw.WriteLine(BitConverter
.ToString(SHA512.Create().ComputeHash(stream))
.ToLowerInvariant().Replace("-", string.Empty));
}
sw.WriteLine();
var s = DateTime.Now.ToString("f");
sw.WriteLine($"Generated On: {s}...");
}
var p = new ProcessStartInfo
{
ErrorDialog = true,
FileName = resultFile,
UseShellExecute = true
};
Process.Start(p);
}
}
}