Wix -- 安装时备份文件夹

发布于 2024-11-06 06:52:39 字数 187 浏览 3 评论 0原文

我想在使用 WIX 控件覆盖新文件之前备份该文件夹。

例子: 我的安装文件夹是“Ifolder”,我使用最新的更改升级了我的产品并创建了安装文件。我必须在同一个“Ifolder”中安装最新的设置。 对于这种情况,我想在安装时将新文件覆盖到同一文件夹中之前备份“Ifolder”。

请在这种情况下添加您的积分。

I want to backup the folder before the new files are overwritten using WIX control.

Example:
My installation folder is "Ifolder", I upgraded my product with the latest changes and created the setup files. I have to install my latest set up in the same "Ifolder".
For this case I want to take a backup of "Ifolder" before the new files are overwritten into the same folder at the time of installation.

Please add your points in this case.

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

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

发布评论

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

评论(1

睫毛溺水了 2024-11-13 06:52:39

您可以尝试在此处使用开源 SystemTools wix 扩展:http://msiext.codeplex.com

演示中的一个示例:

<!-- copy all the files to a subdirectory, delete them on uninstall -->
<AppSecInc:CopyFiles Id="CopyAll" CopyOnInstall="yes" Recurse="yes" Source="[INSTALLLOCATION]" Overwrite="yes" Target="[INSTALLLOCATION]\CopyOfAllFiles" Wildcard="*.*" />
<AppSecInc:DeleteFiles Id="DeleteAll" DeleteOnUnInstall="yes" Recurse="yes" Path="[INSTALLLOCATION]\CopyOfAllFiles" Wildcard="*.*" DeleteEmptyDirectories="yes" />

You can try to use the open source SystemTools wix extension here: http://msiext.codeplex.com.

An example, from the Demo:

<!-- copy all the files to a subdirectory, delete them on uninstall -->
<AppSecInc:CopyFiles Id="CopyAll" CopyOnInstall="yes" Recurse="yes" Source="[INSTALLLOCATION]" Overwrite="yes" Target="[INSTALLLOCATION]\CopyOfAllFiles" Wildcard="*.*" />
<AppSecInc:DeleteFiles Id="DeleteAll" DeleteOnUnInstall="yes" Recurse="yes" Path="[INSTALLLOCATION]\CopyOfAllFiles" Wildcard="*.*" DeleteEmptyDirectories="yes" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文