如何将 VS 2008 安装项目中的文件复制到 C:\temp?

发布于 2024-09-24 20:06:08 字数 182 浏览 0 评论 0原文

我正在学习使用 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 技术交流群。

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

发布评论

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

评论(1

你另情深 2024-10-01 20:06:08

在您的安装项目中:

  • 调出文件系统视图。
  • 右键单击窗格,选择添加特殊文件夹 ->自定义文件夹。。
  • 右键单击该文件夹并选择“属性”。
  • 默认位置属性更改为“C:\temp”。

现在,根据需要将文件添加到项目中的该文件夹中。

是否有任何原因该文件夹必须是字面意义上的“C:\temp”?不保证每个 Windows 系统上都存在这种情况(尽管听起来您可以控制您的部署)。

In your setup project:

  • Bring up the File System view.
  • Right-click on the pane, select Add Special Folder -> Custom Folder.
  • Right-click on that folder and select "Properties".
  • Change the Default Location property to "C:\temp".

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).

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