文件夹和文件未添加到用户的应用程序数据文件夹中
女士们先生们,我已经被这个问题困扰了几个小时,但没有找到答案。我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的,我发现问题所在了。如果将文件添加到用户的应用程序数据文件夹中,它将安装在目标计算机上的 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...