如何将 VS 2008 安装项目中的文件复制到 C:\temp?
我正在学习使用 VS 2008 安装项目为我们的 C# 应用程序创建 MSI 安装程序。目标系统是嵌入式Windows 7。在网上查了一些资料,没有找到答案。
因为该应用程序将安装在Win7机器上。我们需要将一些文件放在 C:\temp 文件夹中以供读写。如何在安装过程中将这些文件复制到 C:\temp 中?
谢谢,
I am learning use VS 2008 setup project to create MSI installer for our C# application. The target system is Windows 7 embedded. Did some research online and couldn't find answers.
Because the application will be installed on Win7 machine. We need to put some files in C:\temp folder for read and write. how can I copy those files into C:\temp during the installation?
thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的安装项目中:
现在,根据需要将文件添加到项目中的该文件夹中。
是否有任何原因该文件夹必须是字面意义上的“C:\temp”?不保证每个 Windows 系统上都存在这种情况(尽管听起来您可以控制您的部署)。
In your setup project:
Now add files to that folder in the project as appropriate.
Is there any reason the folder has to be, literally, "C:\temp"? That's not guaranteed to exist on every Windows system (though it sounds like you have control over your deployments).