We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 114413b commit db3109cCopy full SHA for db3109c
Sonic-06-Mod-Manager/src/UnifyPatcher.cs
@@ -176,7 +176,7 @@ public static void UninstallCustomFilesystem(ListView.ListViewItemCollection lis
176
foreach (string file in custom) {
177
foreach (var fi in di.EnumerateFiles($"*{file}", SearchOption.AllDirectories)) {
178
try {
179
- Console.WriteLine($"[{DateTime.Now:hh:mm:ss tt}] [Remove] {fi.Name}");
+ Console.WriteLine($"[{DateTime.Now:hh:mm:ss tt}] [Remove] {fi.FullName}");
180
File.Delete(fi.FullName); // If custom file is found, erase...
181
}
182
catch { }
0 commit comments