vote up 1 vote down star

How can I create the app.config file programatically on Application startup (if the file doesnot exist)?

flag

Can you specify some more details? I think it's obvious to you how to write a file to disc, but I gues that's not the real question. What dou you want to achive? – Achim Aug 19 at 11:22

3 Answers

vote up 1 vote down check

Since that file is just standard XML, you could just use XmlTextWriter to create it.

link|flag
vote up 0 vote down

I'm not sure, but it's it more appropriate to make your program handle that exception and then use default-values unless there is an app.config?

link|flag
vote up 0 vote down

You can save changes to configuration (by using configuration in the right way). This will create files at user-local or user-roaming levels, I expect it will at application level as well.

But consider that the user running the application will only be able to do this is he/she has sufficient access to the installation directory—this will not normally be the case (and will likely require UAC escalation).

link|flag

Your Answer

Get an OpenID
or

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