Compare commits

...

1 Commits

Author SHA1 Message Date
jcm
904a5ffcb4 Handle exceptions when checking user data directory for symlink (#6304)
Co-authored-by: jcm <butt@butts.com>
2024-02-12 00:10:21 +01:00

View File

@ -232,10 +232,17 @@ namespace Ryujinx.Common.Configuration
// Check if existing old baseDirPath is a symlink, to prevent possible errors. // Check if existing old baseDirPath is a symlink, to prevent possible errors.
// Should be removed, when the existence of the old directory isn't checked anymore. // Should be removed, when the existence of the old directory isn't checked anymore.
private static bool IsPathSymlink(string path) private static bool IsPathSymlink(string path)
{
try
{ {
FileAttributes attributes = File.GetAttributes(path); FileAttributes attributes = File.GetAttributes(path);
return (attributes & FileAttributes.ReparsePoint) == FileAttributes.ReparsePoint; return (attributes & FileAttributes.ReparsePoint) == FileAttributes.ReparsePoint;
} }
catch
{
return false;
}
}
[SupportedOSPlatform("macos")] [SupportedOSPlatform("macos")]
public static void FixMacOSConfigurationFolders() public static void FixMacOSConfigurationFolders()