using Ryujinx.Common.Logging;
using System;
using System.Diagnostics;
using System.IO;
using System.Runtime.InteropServices;
namespace Ryujinx.Ui.Common.Helper
{
public static partial class OpenHelper
[LibraryImport("shell32.dll", SetLastError = true)]
public static partial int SHOpenFolderAndSelectItems(IntPtr pidlFolder, uint cidl, IntPtr apidl, uint dwFlags);
public static partial void ILFree(IntPtr pidlList);
public static partial IntPtr ILCreateFromPathW([MarshalAs(UnmanagedType.LPWStr)] string pszPath);
public static void OpenFolder(string path)
if (Directory.Exists(path))
Process.Start(new ProcessStartInfo
FileName = path,
UseShellExecute = true,
Verb = "open"
});
}
else
Logger.Notice.Print(LogClass.Application, $"Directory \"{path}\" doesn't exist!");
public static void LocateFile(string path)
if (File.Exists(path))
if (OperatingSystem.IsWindows())
IntPtr pidlList = ILCreateFromPathW(path);
if (pidlList != IntPtr.Zero)
try
Marshal.ThrowExceptionForHR(SHOpenFolderAndSelectItems(pidlList, 0, IntPtr.Zero, 0));
finally
ILFree(pidlList);
else if (OperatingSystem.IsMacOS())
Process.Start("open", $"-R \"{path}\"");
else if (OperatingSystem.IsLinux())
Process.Start("dbus-send", $"--session --print-reply --dest=org.freedesktop.FileManager1 --type=method_call /org/freedesktop/FileManager1 org.freedesktop.FileManager1.ShowItems array:string:\"file://{path}\" string:\"\"");
OpenFolder(Path.GetDirectoryName(path));
Logger.Notice.Print(LogClass.Application, $"File \"{path}\" doesn't exist!");
public static void OpenUrl(string url)
Process.Start(new ProcessStartInfo("cmd", $"/c start {url.Replace("&", "^&")}"));
Process.Start("xdg-open", url);
Process.Start("open", url);
Logger.Notice.Print(LogClass.Application, $"Cannot open url \"{url}\" on this platform!");