Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ClickOnce Application user settings locations

Tags:

c#

clickonce

I am currently developing a ClickOnce application that converts CSV files for a database update. The program requires the user to have the ability to change the configuration files for a database change, and change an XML file which populates a drop-down list in the app.

Now I understand that the files are kept in the user/appdata folder to ensure there have the correct privileges, but do I have any influence as to what those folders are called, or where they are saved?

By default, the files are saved in AppData\Local\Apps\2.0\LD7ZEJK0.7AE\NJ42PEPW.1QX\csvt...exe_169e1a4011fbe7ec_0001.0000_none_04507fe9e077ae84

Can I change that to say Documents\CSV_Files or something similar? And if I do, how would I reference the XML file in the configuration file so the program knows where it is?

like image 816
Irish Yobbo Avatar asked Apr 29 '26 13:04

Irish Yobbo


1 Answers

Normally, you shouldn't have to care about the location yourself. Just mark your XML file as data in the ClickOnce manifest and access it using the well-known:

ApplicationDeployment.CurrentDeployment.DataDirectory

Here's an MSDN article describing it: Accessing Local and Remote Data in ClickOnce Applications

like image 163
Magnus Johansson Avatar answered May 01 '26 02:05

Magnus Johansson



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!