文件夹和文件未添加到用户的应用程序数据文件夹中

发布于 2024-10-21 14:27:34 字数 363 浏览 0 评论 0原文

女士们先生们,我已经被这个问题困扰了几个小时,但没有找到答案。我在 Visual Studio 中有一个安装项目,它为我的 C# 应用程序创建安装程序。我想要的是添加一个包含 XML 文件的文件夹,我的应用程序可以从中读取和写入用户的应用程序数据文件夹。在文件系统编辑器窗口中,我添加了用户的应用程序数据文件夹。在此文件夹中,我添加了一个新文件夹(将其重命名为我的应用程序的名称),然后将 XML 文件放入其中。我还将该文件夹的 AlwaysCreate 设置为 true。安装程序应在 C:\Users\UserName\AppData\Local 中创建文件夹并将文件添加到其中。但是,安装程序不会创建我的应用程序使用的文件夹或 XML 文件。我缺少什么?还有其他方法来安装读/写 XML 文件吗?提前致谢!

Ladies and Gentlemen , I have been stuck with this for a few hours and do not find an answer. I have a Setup project in Visual Studio that creates an installer for my C# application. What I want is to add a folder with an XML file from which my application can read and write to the User's Application Data folder. In the File System Editor window I added the User's Application Data folder. In this folder I added a new folder (renaming it to my app's name) and then place the XML file in there. I also set the AlwaysCreate to true for the folder. The installer should create the folder in C:\Users\UserName\AppData\Local and add the file to it. However, the installer does not create the folder or the XML file my application uses. What am I missing? Is there another way to install a read/write XML file? Thanks in advance!

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

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

发布评论

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

评论(1

我要还你自由 2024-10-28 14:27:34

好的,我发现问题所在了。如果将文件添加到用户的应用程序数据文件夹中,它将安装在目标计算机上的 C:\Users\Username\AppData\Roaming 中,而不是安装到 AppData\Local 中。

因此,我更改了我的应用程序从Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData)而不是Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData)获取文件。

希望它能帮助别人...

Ok, I found what the issue was. If a file is added to the User's Application Data folder it is installed on the target computer at C:\Users\Username\AppData\Roaming and not into AppData\Local.

Therefore, I changed my application get the file from Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) instead of Environment.GetFolderPath( Environment.SpecialFolder.LocalApplicationData).

Hope it helps someone else...

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