mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-10 23:06:38 +00:00
Ignore exceptions when cleaning the SD card saves (#2576)
This commit is contained in:
parent
d753de6d5d
commit
5e99bff7de
1 changed files with 11 additions and 2 deletions
|
@ -97,8 +97,17 @@ namespace Ryujinx.HLE.HOS
|
|||
|
||||
try
|
||||
{
|
||||
RyujinxClient.Fs.CleanDirectoryRecursively("sdcard:/Nintendo/save".ToU8Span()).IgnoreResult();
|
||||
RyujinxClient.Fs.DeleteDirectoryRecursively("sdcard:/save".ToU8Span()).IgnoreResult();
|
||||
try
|
||||
{
|
||||
RyujinxClient.Fs.CleanDirectoryRecursively("sdcard:/Nintendo/save".ToU8Span()).IgnoreResult();
|
||||
}
|
||||
catch (Exception) { /* We don't care about the result */ }
|
||||
|
||||
try
|
||||
{
|
||||
RyujinxClient.Fs.DeleteDirectoryRecursively("sdcard:/save".ToU8Span()).IgnoreResult();
|
||||
}
|
||||
catch (Exception) { /* We don't care about the result */ }
|
||||
}
|
||||
finally
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue