vote up 0 vote down star
1

I have a C# .NET Console application exe with an app.config specifying a handful of ApplicationSettings used as parameters.

I have an additional separate (Windows Forms) exe (residing in the same directory) to allow the ApplicationSettings used by the first exe to be modified by the user.

What it the cleanest way to go about modifying the first exe's app.config from the second exe?

Thanks.

flag

67% accept rate

2 Answers

vote up 0 vote down check

you can use

public static Configuration OpenExeConfiguration(
    string exePath
)

MSDN Link

link|flag
Thanks. Will this allow me to edit the applicationSettings in the app.config, and if so how? I thought applicationSettings were considered 'readonly'.. – TonE Jun 10 at 11:22
Yeah, cfg.AppSettings should work and allow you to change settings. Try it, I can't right now. – Michał Chaniewski Jun 10 at 11:30
No there are not readonly as I know, just use GetSection function to extract and change section you want, see samples in a given link... – ArsenMkrt Jun 10 at 11:31
Thanks, that works fine. I was getting confused with 'AppSettings' and 'ApplicationSettings' sections of the App.Config file. – TonE Jun 10 at 14:11
vote up 0 vote down

Use:

Configuration cfg = ConfigurationManager.OpenExeConfiguration(path_to_exe_file_of_second_app);
// do whatever you need with that configuration
cfg.Save();

Please note that OpenExeConfiguration method takes a path to the second app exe file, not the config file itself.

link|flag

Your Answer

Get an OpenID
or

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