string path = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.PerUserRoamingAndLocal).FilePath; MessageBox.Show(path); if (File.Exists(path)) { Process.Start(new ProcessStartInfo("explorer.exe", " /select, " + path)); }
string path = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.PerUserRoamingAndLocal).FilePath; MessageBox.Show(path); if (File.Exists(path)) { Process.Start(new ProcessStartInfo("explorer.exe", " /select, " + path)); }