public static void BrowserFile(string filepath) { if (File.Exists(filepath) || Directory.Exists(filepath)) { Process.Start(@"explorer.exe", "/select,"" + filepath + """); } }