NSIS 安装程序文件复制操作不起作用

发布于 2024-11-05 03:10:42 字数 336 浏览 0 评论 0原文

!include nsDialogs.nsh
!include LogicLib.nsh

Section

!define FileCopy `!insertmacro FileCopy`
!macro FileCopy FilePath TargetDir
  CreateDirectory `${TargetDir}`
  CopyFiles `${FilePath}` `${TargetDir}`
!macroend

  ${FileCopy} 'E:\BACKUP\' 'E:\BACKUPNEW\'

SectionEnd

--它给出错误:从来没有 OUTFILE 命令.........

!include nsDialogs.nsh
!include LogicLib.nsh

Section

!define FileCopy `!insertmacro FileCopy`
!macro FileCopy FilePath TargetDir
  CreateDirectory `${TargetDir}`
  CopyFiles `${FilePath}` `${TargetDir}`
!macroend

  ${FileCopy} 'E:\BACKUP\' 'E:\BACKUPNEW\'

SectionEnd

--it gives error: Never had OUTFILE command.........

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

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

发布评论

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

评论(1

南街女流氓 2024-11-12 03:10:42

好吧,makensis 告诉你这个问题:“从来没有 OUTFILE 命令”

脚本必须有一个 outfile 命令。

Outfile "mysetup.exe"
Page InstFiles ;You can omit this, but the compiler will give you a warning
Section
SectionEnd

Well, makensis is telling you the problem: "Never had OUTFILE command"

A script must have a outfile command.

Outfile "mysetup.exe"
Page InstFiles ;You can omit this, but the compiler will give you a warning
Section
SectionEnd
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文