如何获取winforms中的应用程序设置路径?

发布于 2024-10-21 18:07:19 字数 250 浏览 2 评论 0原文

在 Winforms 的 Settings.Settings 中,我有一些用户设置,我必须清理它们。

我不能通过以下方式做到这一点:

Settings.Default.SomeUserSettings = null;

它必须手动完成。

那么,我在哪里可以找到这些设置?

我使用的是 Windows 7。

或者也许您知道一些应用程序,我可以从中找到上次编辑的文件?

In Settings.Settings in Winforms I have some User settings, and I must clean up them.

I can't do it by:

Settings.Default.SomeUserSettings = null;

It must be done by hand .

So, where can I find those settings ?

I'm using windows 7.

Or maybe you know some application, from which I can find last edited files?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

心是晴朗的。 2024-10-28 18:07:19

查看应用程序的文件夹,有一个名为 yourAppName.exe.config 的 XML 文件。这是保存用户设置的位置。

要获取路径,您可以使用:

string path = AppDomain.CurrentDomain.SetupInformation.ConfigurationFile;

Look in the folder of your application, there is a XML file named yourAppName.exe.config. This is where the user settings are saved.

To get the path you can use :

string path = AppDomain.CurrentDomain.SetupInformation.ConfigurationFile;
你的心境我的脸 2024-10-28 18:07:19

如果你打算手工完成的话
在应用程序文件夹(安装应用程序的文件夹)或调试文件夹(如果您运行的是 Visual Studio 解决方案)中,您将看到扩展名为 Name.exe.config 的文件,使用记事本或打开它dreamweaver 并查看那里的 XML,它会类似于

<Mark_V1._0.myAppSett>
  <setting name="validated" serializeAs="Bool">
     <value>False</value>
  </setting>
</Mark_V1._0.myAppSett>

修改 标记以更改值

If you intend to do it by hand then
In the Application Folder(The folder where the application is installed) or Debug folder(if you are running Visual Studio Solution) you would see the File with Extension of Name.exe.config Open it with notepad or dreamweaver and see the XML there it would be something like

<Mark_V1._0.myAppSett>
  <setting name="validated" serializeAs="Bool">
     <value>False</value>
  </setting>
</Mark_V1._0.myAppSett>

Modify the <value > tag to change the value

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文