mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-27 15:44:00 +08:00
(GarExtract): fallback to default destination directory if last one used is inaccessible.
This commit is contained in:
parent
3342461ac6
commit
11906d9c57
@ -56,6 +56,8 @@ namespace GARbro.GUI
|
|||||||
try
|
try
|
||||||
{
|
{
|
||||||
string destination = Settings.Default.appLastDestination;
|
string destination = Settings.Default.appLastDestination;
|
||||||
|
if (!Directory.Exists (destination))
|
||||||
|
destination = "";
|
||||||
if (!ViewModel.IsArchive)
|
if (!ViewModel.IsArchive)
|
||||||
{
|
{
|
||||||
if (!entry.IsDirectory)
|
if (!entry.IsDirectory)
|
||||||
|
Loading…
Reference in New Issue
Block a user