Revert overload usage

yay core/framework enhancements
This commit is contained in:
Kurt 2020-01-25 18:12:58 -08:00
parent edc95efe95
commit 1520210e68

View file

@ -66,7 +66,11 @@ namespace PKHeX.WinForms
continue;
var loc = Path.Combine(dir, fn);
File.Move(f, loc, true);
if (File.Exists(loc))
File.Delete(loc);
File.Move(f, loc);
// if net framework support is ever removed, use the new overload instead of the stuff above:
// File.Move(f, loc, true);
}
Application.Exit();