Eric
Eric

Reputation: 1268

C# Settings Saving?

I asked a question earlier about which method for saving would be better, I decided I'd try something else because no one had a real response to something that'd work for me.

So, I want to try saving custom .xml files into the AppData directory, in a nicely order like:

AppData\Local\Program\Downloads
AppData\Local\Program\Settings

Settings Directory:

AppData\Local\Program\Settings\One
AppData\Local\Program\Settings\Two
AppData\Local\Program\Settings\Three

etc...

How can I do this in Windows Form without using Settings.settings as those don't have the right requirements I need.

Upvotes: 0

Views: 594

Answers (1)

Richard Schneider
Richard Schneider

Reputation: 35464

See my article on Code Project. http://www.codeproject.com/KB/XML/user_options_in_xml.aspx

Upvotes: 1

Related Questions