Fix potential exception in PathEntryCollection path resolving

see also #4077 for where this initially came up
This commit is contained in:
Morilli 2024-10-06 00:02:02 +02:00
parent 7b2de12de3
commit 97785b2af2
1 changed files with 12 additions and 3 deletions

View File

@ -121,16 +121,25 @@ namespace BizHawk.Client.Common
return path;
}
if (path.IsAbsolute())
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP2_1_OR_GREATER
bool isAbsolute = path.IsAbsolute();
#else
bool isAbsolute;
try
{
return path;
isAbsolute = path.IsAbsolute();
}
catch
{
isAbsolute = false;
}
#endif
//handling of initial .. was removed (Path.GetFullPath can handle it)
//handling of file:// or file:\\ was removed (can Path.GetFullPath handle it? not sure)
// all bad paths default to EXE
return PathUtils.ExeDirectoryPath;
return isAbsolute ? path : PathUtils.ExeDirectoryPath;
}
public static string MovieAbsolutePath(this PathEntryCollection collection)