为 Windows 7、Vista 和 XP 创建正确的设置文件
在 Windows 7 计算机上安装我的一个 .Net 应用程序后,我不断收到错误消息,指出我的应用程序无权将设置文件保存到程序文件文件夹下的应用程序文件夹中。我知道可以提升到管理员权限或其他权限,但我想避免这种情况。我知道 Windows 7 和 Vista 有一个特定位置,他们希望您保存设置文件,但我不确定如何在 .Net 中确定该位置。有人可以提供一些帮助或建议吗?谢谢!
After installing one of my .Net apps on a Windows 7 machine I keep getting an error that my application does not have permission to save a settings file to the application folder under the program files folder. I'm aware it's possible to elevate to administrator privileges or whatever but I'd like to avoid this. I know Windows 7 and Vista have a particular location where they would like you to save settings files but I'm unsure of how to determine this location in .Net. Could anyone offer some assistance or suggestions? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 Environment.SpecialFolder 枚举 返回用户系统上的各种“特殊”目录。您可以将它们用作 Environment.GetFolderPath 方法。
You can use the Environment.SpecialFolder enumeration to return the various 'special' directories on the user's system. You can use these as the parameters to the Environment.GetFolderPath method.
您正在寻找
Environment.GetFolderPath
方法 及其ApplicationData
参数。You're looking for the
Environment.GetFolderPath
method, and itsApplicationData
parameter.