Handle UnauthorizedAccessException

This commit is contained in:
~lucidiot 2022-06-02 22:31:21 +02:00
parent 3a5f94fed3
commit 7e413eb87b
1 changed files with 6 additions and 0 deletions

View File

@ -106,6 +106,12 @@ If any of the files do not exist or if any error occurs while parsing one of the
path,
destination,
e.Message);
} catch (UnauthorizedAccessException e) {
Console.WriteLine(
"Failed unpacking APK file at {0} to {1}: {2}",
path,
destination,
e.Message);
}
}