using System; using System.IO; using Windows.Win32; using Windows.Win32.Foundation; namespace Flow.Launcher.Plugin.Program.Programs { // From PT Run /// /// Class to get localized name of shell items like 'My computer'. The localization is based on the 'windows display language'. /// Reused code from https://stackoverflow.com/questions/41423491/how-to-get-localized-name-of-known-folder for the method /// public static class ShellLocalization { /// /// Returns the localized name of a shell item. /// /// Path to the shell item (e. g. shortcut 'File Explorer.lnk'). /// The localized name as string or . public static unsafe string GetLocalizedName(string path) { int retCode = PInvoke.SHCreateItemFromParsingName(path, null, typeof(Windows.Win32.UI.Shell.IShellItem).GUID, out object shellItemObj); if (retCode != 0 || shellItemObj is not Windows.Win32.UI.Shell.IShellItem shellItem) { return string.Empty; } PWSTR displayName; shellItem.GetDisplayName(Windows.Win32.UI.Shell.SIGDN.SIGDN_NORMALDISPLAY, &displayName); string filename = displayName.ToString(); PInvoke.CoTaskMemFree(displayName); return filename; } /// /// This method returns the localized path to a shell item (folder or file) /// /// The path to localize /// The localized path or the original path if localized version is not available public static string GetLocalizedPath(string path) { path = Environment.ExpandEnvironmentVariables(path); string ext = Path.GetExtension(path); var pathParts = path.Split("\\"); string[] locPath = new string[pathParts.Length]; for (int i = 0; i < pathParts.Length; i++) { int iElements = i + 1; string lName = GetLocalizedName(string.Join("\\", pathParts[..iElements])); locPath[i] = !string.IsNullOrEmpty(lName) ? lName : pathParts[i]; } string newPath = string.Join("\\", locPath); newPath = !newPath.EndsWith(ext, StringComparison.InvariantCultureIgnoreCase) ? newPath + ext : newPath; return newPath; } } }