Fix ConvertFilenameToTasMovie test
This commit is contained in:
parent
6bc771bf57
commit
657531a328
|
@ -154,7 +154,7 @@ namespace BizHawk.Common.PathExtensions
|
|||
|
||||
public static (string? Dir, string FileNoExt, string? FileExt) SplitPathToDirFileAndExt(this string path)
|
||||
=> (
|
||||
Path.GetDirectoryName(path),
|
||||
string.IsNullOrEmpty(path) ? null : Path.GetDirectoryName(path),
|
||||
Path.GetFileNameWithoutExtension(path),
|
||||
Path.GetExtension(path) is { Length: not 0 } ext
|
||||
? ext
|
||||
|
|
Loading…
Reference in New Issue