为 Windows 7、Vista 和 XP 创建正确的设置文件

发布于 2024-11-07 02:34:43 字数 197 浏览 0 评论 0原文

在 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 技术交流群。

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

发布评论

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

评论(2

墨小墨 2024-11-14 02:34:43

您可以使用 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.

雨巷深深 2024-11-14 02:34:43

You're looking for the Environment.GetFolderPath method, and its ApplicationData parameter.

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