This repository was archived by the owner on Jun 5, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathRemoveHistoryCommand.cs
More file actions
215 lines (192 loc) · 7.15 KB
/
Copy pathRemoveHistoryCommand.cs
File metadata and controls
215 lines (192 loc) · 7.15 KB
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
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Net.Sockets;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using ManyConsole;
using Microsoft.VisualBasic.FileIO;
namespace FileHistoryCleaner
{
public class RemoveHistoryCommand : ConsoleCommand
{
public RemoveHistoryCommand()
{
IsCommand("remove-history");
HasRequiredOption<string>("root=", "Root directory to process", root => Root = root);
HasOption("whatif", "Doesn't actually delete any files.", _ => WhatIf = true);
HasOption("f|force", "Deletes files instead of moving them to the recycle bin.", _ => Force = true);
HasOption("r|recursive", "Recursive.", _ => Recursive = true);
HasOption("verbose", "Verbose logging.", _ => Verbose = true);
HasOption<string>("rd|remove-directories=", "", _ => StripDirectories = new Regex(_, RegexOptions.IgnoreCase));
HasOption<string>("rf|remove-files=", "", _ => StripFiles = new Regex(_, RegexOptions.IgnoreCase));
}
public Regex StripDirectories
{
get;
set;
}
public Regex StripFiles
{
get;
set;
}
public bool Recursive { get; set; }
public bool Force { get; set; }
public bool Verbose { get; set; }
public bool WhatIf { get; set; }
public string Root { get; set; }
public override int Run(string[] remainingArguments)
{
var foreColor = Console.ForegroundColor;
var backColor = Console.BackgroundColor;
try
{
try
{
CleanDirectory(Root);
return 0;
}
finally
{
Console.ForegroundColor = foreColor;
Console.BackgroundColor = backColor;
}
}
catch (Exception e)
{
Console.WriteLine(e);
return -1;
}
}
private void CleanDirectory(string path)
{
CleanFilesInDirectory(path);
if (Recursive)
{
CleanSubDirectories(path);
}
}
private void CleanFilesInDirectory(string path)
{
if (Verbose)
{
Console.ForegroundColor = ConsoleColor.White;
Console.WriteLine("======================================================================");
Console.WriteLine("Dir: " + path);
}
//TODO: Handle access denied errors
var files = Directory.EnumerateFiles(path);
var groupedFiles = from file in files
let fileSnapshot = new FileSnapshot(file)
orderby fileSnapshot.TargetFilename, fileSnapshot.Timestamp descending
group fileSnapshot by (fileSnapshot.TargetFilename);
var result = from g in groupedFiles
select (StripFiles != null && StripFiles.IsMatch(g.Key))
? new { keep = (FileSnapshot)null, delete = g.AsEnumerable() }
: new { keep = g.First(), delete = g.Skip(1) };
foreach (var r in result)
{
if (Verbose)
{
Console.ForegroundColor = ConsoleColor.White;
Console.WriteLine("File: " + (r.keep ?? r.delete.First())?.TargetFilename);
}
if (r.keep != null && r.keep.Path != r.keep.TargetFilename)
{
if (Verbose) { Console.WriteLine("Keep: " + r.keep.Path); }
Console.ForegroundColor = ConsoleColor.Blue;
Console.WriteLine("Rename: " + r.keep.Path + " => " + r.keep.TargetFilename);
if (!WhatIf)
{
//TODO: What to do if the file already exists?
File.Move(r.keep.Path, r.keep.TargetFilename);
}
}
foreach (var drop in r.delete)
{
if (Force)
{
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("Delete: " + drop.Path);
if (!WhatIf)
{
File.Delete(drop.Path);
}
}
else
{
Console.ForegroundColor = ConsoleColor.DarkYellow;
Console.WriteLine("Recycle: " + drop.Path);
if (!WhatIf)
{
FileSystem.DeleteFile(drop.Path, UIOption.OnlyErrorDialogs,
RecycleOption.SendToRecycleBin);
}
}
}
}
}
internal class FileSnapshot
{
internal FileSnapshot(string filename)
{
Path = filename;
string datePart = Regex.Match(filename, @"(?<=(^| )\()\d{4}_\d{2}_\d{2} \d{2}_\d{2}_\d{2} \w+(?=\)(\.|$))", RegexOptions.Multiline).Value;
if (!string.IsNullOrWhiteSpace(datePart))
{
TargetFilename = filename.Replace(" (" + datePart + ")", "");
Timestamp = DateTimeOffset.ParseExact(datePart.Replace(" UTC", "Z"), "yyyy_MM_dd HH_mm_ssZ", CultureInfo.InvariantCulture);
}
else
{
TargetFilename = filename;
Timestamp = DateTimeOffset.UtcNow;
}
}
internal string Path;
internal string TargetFilename;
internal DateTimeOffset Timestamp;
}
private void CleanSubDirectories(string path)
{
//TODO: Handle access denied errors
foreach (var sub in Directory.EnumerateDirectories(path))
{
if (StripDirectories != null && StripDirectories.IsMatch(sub))
{
DeleteDirectory(sub);
}
else
{
CleanDirectory(sub);
}
}
}
private void DeleteDirectory(string sub)
{
if (Force)
{
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("Delete: " + sub);
if (!WhatIf)
{
Directory.Delete(sub, true);
}
}
else
{
Console.ForegroundColor = ConsoleColor.DarkYellow;
Console.WriteLine("Recycle: " + sub);
if (!WhatIf)
{
FileSystem.DeleteDirectory(sub, UIOption.OnlyErrorDialogs,
RecycleOption.SendToRecycleBin);
}
}
}
}
}