(string path)
| 7 | internal static class Utils |
| 8 | { |
| 9 | public static void OpenFolder(string path) => Process.Start("explorer.exe", $"\"{path}\""); |
| 10 | |
| 11 | public static void OpenLink(string url) => Process.Start(new ProcessStartInfo(url) { UseShellExecute = true }); |
| 12 |