Cleanup GetRelativePath after move from MultiDiskBundler

fixes 5d001f3aa
This commit is contained in:
YoshiRulz 2020-10-01 22:20:56 +10:00
parent 7f4d29d0ff
commit 03f82226cf
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 4 additions and 3 deletions

View File

@ -47,14 +47,15 @@ namespace BizHawk.Common.PathExtensions
return false;
}
/// <exception cref="ArgumentException">running on Windows host, and unmanaged call failed</exception>
/// <exception cref="ArgumentException">running on Windows host, and unmanaged call failed</exception>
/// <exception cref="FileNotFoundException">running on Windows host, and either path is not a regular file or directory</exception>
/// <remarks>Algorithm for Windows taken from https://stackoverflow.com/a/485516/7467292</remarks>
public static string GetRelativePath(string fromPath, string toPath)
public static string? GetRelativePath(string? fromPath, string? toPath)
{
if (fromPath == null || toPath == null) return null;
if (OSTailoredCode.IsUnixHost) return fromPath.MakeRelativeTo(toPath);
//TODO merge this with the Windows implementation in PathExtensions.MakeRelativeTo
//TODO merge this with the Windows implementation in MakeRelativeTo
static FileAttributes GetPathAttribute(string path1)
{
var di = new DirectoryInfo(path1.Split('|').First());