From dce961357a9e4539566915faa817f45d774f6b01 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Sun, 7 Aug 2022 11:18:18 +1000 Subject: [PATCH] Refactor `IGameInfo.FilesystemSafeName` extension it doesn't make any sense to split this string into dir+filename, it shouldn't contain a slash --- src/BizHawk.Emulation.Common/Extensions.cs | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/src/BizHawk.Emulation.Common/Extensions.cs b/src/BizHawk.Emulation.Common/Extensions.cs index 8d32793bd5..5a34237cbb 100644 --- a/src/BizHawk.Emulation.Common/Extensions.cs +++ b/src/BizHawk.Emulation.Common/Extensions.cs @@ -423,16 +423,12 @@ namespace BizHawk.Emulation.Common } public static string FilesystemSafeName(this IGameInfo game) - { - var pass1 = game.Name - .Replace('/', '+') // '/' is the path dir separator, obviously (methods in Path will treat it as such, even on Windows) + => game.Name.Replace('/', '+') // '/' is the path dir separator, obviously (methods in Path will treat it as such, even on Windows) .Replace('|', '+') // '|' is the filename-member separator for archives in HawkFile .Replace(":", " -") // ':' is the path separator in lists (Path.GetFileName will drop all but the last entry in such a list) - .Replace("\"", ""); // '"' is just annoying as it needs escaping on the command-line - var filesystemDir = string.IsNullOrWhiteSpace(pass1) ? string.Empty : Path.GetDirectoryName(pass1); - var pass2 = Path.GetFileName(pass1).RemoveInvalidFileSystemChars(); - return Path.Combine(filesystemDir, pass2.RemoveSuffix('.')); // trailing '.' would be duplicated when file extension is added - } + .Replace("\"", "") // '"' is just annoying as it needs escaping on the command-line + .RemoveInvalidFileSystemChars() + .RemoveSuffix('.'); // trailing '.' would be duplicated when file extension is added /// /// Adds an axis to the receiver , and returns it.