mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-15 01:25:25 +00:00
ApplicationLibrary: Skip invalid symlinks (#6004)
This commit is contained in:
parent
5ce47bfe8c
commit
93a24afaaa
|
@ -136,6 +136,13 @@ namespace Ryujinx.Ui.App.Common
|
|||
if (!fileInfo.Attributes.HasFlag(FileAttributes.Hidden) && extension is ".nsp" or ".pfs0" or ".xci" or ".nca" or ".nro" or ".nso")
|
||||
{
|
||||
var fullPath = fileInfo.ResolveLinkTarget(true)?.FullName ?? fileInfo.FullName;
|
||||
|
||||
if (!File.Exists(fullPath))
|
||||
{
|
||||
Logger.Warning?.Print(LogClass.Application, $"Skipping invalid symlink: {fileInfo.FullName}");
|
||||
continue;
|
||||
}
|
||||
|
||||
applications.Add(fullPath);
|
||||
numApplicationsFound++;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue