OpenExplorer(@"C:\temp");
1 2 3 4 5 6
private static void OpenExplorer(string path) { if (Directory.Exists(path)) Process.Start("explorer.exe", path); }