(string url)
| 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 | |
| 13 | public static bool IsFileInUse(string path) |
| 14 | { |
no outgoing calls
no test coverage detected