When using a Settings.settings file in .NET, where is the config actually stored? I want to delete the saved settings to go back to the default state, but can't find where it's stored... any ideas?
|
|
Depends whether the setting you have chosen is at 'User' scope or 'Application' scope. User scope settings are stored in C:\Documents and Settings\ username \Local Settings\Application Data\ ApplicationName You can read/write them at runtime. [For Vista and Windows 7, folder is C:\Users\ username \Local Settings\Application Data\ ApplicationName ] Application scope settings are saved in AppName.exe.config and they are readonly at runtime. |
|||
|
|
|
|
Here the snippet you can use to programmatically get user.config file location:
ApplicationSettings (i.e. settings.settings) use PerUserRoamingAndLocal for user settings by default (as I remembered). Update: Strange but there is too many incorrect answers here. If you are looking for you user scoped settings file (user.config) it will be located in the following folder (for Windows XP):
Url or StrongName depends on have you application assembly strong name or not. |
|||
|
|
|
|
If your settings file is in a web app, they will be in teh web.config file (right below your project. If they are in any other type of project, they will be in the app.config file (also below your project). |
||||||
|
|
|
it is in a foler with your application's name in Application Data folder in User's home folder (C:\documents and settings\user on xp and c:\users\user on vista). There is some info here also. PS:- try accessing it by %appdata% in run box! |
||
|
|
|
|
All your settings are stored in the respective .config file. The .settings file simply provides a strongly typed class for a set of settings that belong together, but the actual settings are stored in app.config or a .config file in your application. If you add a .settings file, an app.config will be automatically added to house the settings if you don't already have one. |
||
|
|
|
|
Two files: 1) An app.config or web.config file. The settings her can be customized after build with a text editer. 2) The settings.designer.cs file. This file has autogenerated code to load the setting from the config file, but a default value is also present in case the config file does not have the particular setting. |
||
|
|
|
|
Assuming that you're talking about desktop and not web applications: When you add settings to a project, VS creates a file named At compile time, VS will (by default; you can change this) copy the If you change a setting through the VS settings editor, it will update both Then there are user-scoped settings. Application-scope settings are read-only. Your program can modify and save user-scope settings, thus allowing each user to have his/her own settings. These settings aren't stored in the The path to that file is |
||
|
|
