diff --git a/Netch/Updater/Updater.cs b/Netch/Updater/Updater.cs index 16436bde..486d8a0a 100644 --- a/Netch/Updater/Updater.cs +++ b/Netch/Updater/Updater.cs @@ -148,7 +148,14 @@ namespace Netch.Updater public static void CleanOld() { foreach (var f in Directory.GetFiles(Global.NetchDir, "*.old", SearchOption.AllDirectories)) - File.Delete(f); + try + { + File.Delete(f); + } + catch (Exception) + { + // ignored + } } } } \ No newline at end of file