更改应用程序设置文件的存储位置
可能的重复:
使用 ConfigurationManager 从任意位置加载配置 < /p>
I我正在使用设置文件来存储我的应用程序的设置。设置文件将存储在%AppData%\CompanyName\user.config 中。如何更改店铺位置?示例:我想将此配置文件保存在 %AppData%\CompanyName\ApplicationName\Version\user.config
谢谢。
Possible Duplicate:
Using ConfigurationManager to load config from an arbitrary location
I'm using Setting File to store my application's settings. The setting file will be stored in %AppData%\CompanyName\user.config. How to change store location? Example: I want to save this config file in %AppData%\CompanyName\ApplicationName\Version\user.config
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能决定使用 .NET 每用户(漫游)设置:
根据 MSDN,您不能使用 OpenExeConfiguration,因为它接受可执行文件的路径,而不是配置文件的路径。您应该使用 OpenMappedExeConfiguration 与包含 ExeConfigurationFileMap 结构配置文件的完整路径。
You might decide to use .NET per-user(roaming) settings:
According to MSDN, you cannot use OpenExeConfiguration because it accepts path to the executable, not the path to configuration file. You should use OpenMappedExeConfiguration with ExeConfigurationFileMap structure that contains full path to configuration file.