From 11906d9c579a54c99f40c01df747c6b009fae815 Mon Sep 17 00:00:00 2001 From: morkt Date: Sat, 1 Aug 2015 18:30:09 +0400 Subject: [PATCH] (GarExtract): fallback to default destination directory if last one used is inaccessible. --- GarExtract.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/GarExtract.cs b/GarExtract.cs index 4acb3856..a2a44436 100644 --- a/GarExtract.cs +++ b/GarExtract.cs @@ -56,6 +56,8 @@ namespace GARbro.GUI try { string destination = Settings.Default.appLastDestination; + if (!Directory.Exists (destination)) + destination = ""; if (!ViewModel.IsArchive) { if (!entry.IsDirectory)