forked from VerifyTests/DiffEngine
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFilePurger.cs
91 lines (81 loc) · 2.32 KB
/
FilePurger.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
static class FilePurger
{
public static void Launch()
{
var thread = new Thread(Inner);
thread.SetApartmentState(ApartmentState.STA);
thread.Start();
}
static void Inner()
{
using var dialog = new FolderBrowserDialog();
var directoryResult = dialog.ShowDialog();
var path = dialog.SelectedPath;
if (directoryResult != DialogResult.OK ||
string.IsNullOrWhiteSpace(path))
{
return;
}
var files = Directory.GetFiles(path, "*.verified.*", SearchOption.AllDirectories);
if (files.Length == 0)
{
MessageBox.Show($"No *.verified.* files found in {path}");
return;
}
if (Confirm(files))
{
DeleteFiles(files);
}
}
static bool Confirm(string[] files)
{
var result = AskQuestion(
$"""
Files found: {files.Length}.
Delete files?
""",
"Confirm",
MessageBoxButtons.OKCancel);
return result == DialogResult.OK;
}
static void DeleteFiles(string[] files)
{
for (var index = 0; index < files.Length; index++)
{
var file = files[index];
try
{
if (File.Exists(file))
{
File.Delete(file);
}
}
catch (Exception exception)
{
var failedResult = AskQuestion(
$"""
Could not delete file: {file}
Exception: {exception.Message}
""",
"Delete failed",
MessageBoxButtons.AbortRetryIgnore);
if (failedResult == DialogResult.Abort)
{
return;
}
if (failedResult == DialogResult.Retry)
{
index--;
}
}
}
}
static DialogResult AskQuestion(string text, string caption, MessageBoxButtons buttons) =>
MessageBox.Show(
text,
caption,
buttons,
MessageBoxIcon.Question,
MessageBoxDefaultButton.Button1,
MessageBoxOptions.DefaultDesktopOnly);
}