I'd like to display the location of the user.config file in my windows forms application so a user can easily find it.

I understand how the path is created thanks to: Can I control the location of .NET user settings to avoid losing settings on application upgrade?.

However, in case this changes, I would rather not have to construct path this in my app, especially if there is an easy method for getting the user.config file location.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Try this:

var config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.PerUserRoaming);

MessageBox.Show(config.FilePath);
link|improve this answer
That is exactly what I need. Any idea what the real difference between ConfigurationUserLevel.PerUserRoamingAndLocal and ConfigurationUserLevel.PerUserRoaming is? RoamindAndLocal would seem to cover both situations??? – Chris Weber Jan 27 at 21:18
feedback

Use the ConfigurationManager to get the Configuration-object. The Configuration-object has a string property FilePath. See: Configuration-Members

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.