使用 Visual Studio 安装项目在安装过程中将文件复制到特定目录
我有一个文件 - 比如说readme.txt,我想将其复制或插入到目录中
C:\Documents and Settings\fooUsername\Application Data\BarSoftware
在使用 Visual Studio 的安装项目安装程序期间 - 我知道这与文件系统编辑器有关,但不太确定,因为它有我已经有一段时间没有做过这类事情了。
I have a file - say readme.txt that I want to copy or insert to a directory say
C:\Documents and Settings\fooUsername\Application Data\BarSoftware
during the installation of my program using Visual Studio's setup project - I know it is something to do with File System Editor but not exactly sure as it has been some time since I have done this type of thing.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看->文件系统
文件夹->用户的应用数据
文件夹
此处列出
http://msdn.microsoft.com/en-us/library/s2esdf4x
但“应用程序数据文件夹”是
将文件放入 C:\Documents and Settings\username\Application Data\
View -> File System
Folder -> User's Application Data
Folder
listed here
http://msdn.microsoft.com/en-us/library/s2esdf4x
but the "Application Data Folder" is
the one that will put files in C:\Documents and Settings\username\Application Data\
对于其他偶然发现此问题的人,如果您需要更通用的位置(在应用程序目录之外),请参阅问题:
VS 安装项目:在不同目录中安装文件
For others that stumble across this, if you need a more general location (outside your application directory) see question:
VS Setup project: install files in different directories