如何获取winforms中的应用程序设置路径?
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看应用程序的文件夹,有一个名为
yourAppName.exe.config
的 XML 文件。这是保存用户设置的位置。要获取路径,您可以使用:
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 :
如果你打算手工完成的话
在应用程序文件夹(安装应用程序的文件夹)或调试文件夹(如果您运行的是 Visual Studio 解决方案)中,您将看到扩展名为
Name.exe.config
的文件,使用记事本或打开它dreamweaver 并查看那里的 XML,它会类似于修改
标记以更改值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 likeModify the
<value >
tag to change the value