如果文件未被覆盖,则退出安装程序

发布于 2024-11-07 05:01:03 字数 234 浏览 4 评论 0原文

我正在使用:

; Set output path to the installation directory.
SetOutPath $INSTDIR\

SetOverwrite on

; Put file there
File "ACC\*.APP"

覆盖文件,但如果文件无法覆盖,那么我希望安装程序退出,该怎么做?

是否需要使用Error Flag值?但如何呢?

I am using:

; Set output path to the installation directory.
SetOutPath $INSTDIR\

SetOverwrite on

; Put file there
File "ACC\*.APP"

to overwrite a file, but if the file can't be overwritten, then I want that the installer quits, how to do this?

Does Error Flag value needs to be used? But how?

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

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

发布评论

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

评论(1

魂归处 2024-11-14 05:01:03

文件命令设置错误标志
如果覆盖模式设置为“尝试”并且
该文件无法被覆盖,或者
如果覆盖模式设置为“on”
并且该文件无法被覆盖
并且用户选择忽略

!include LogicLib.nsh
Section
ClearErrors
SetOverwrite try
SetOutPath $INSTDIR
File "ACC\*.APP"
${If} ${Errors}
  Quit
${EndIf}
SectionEnd

The File command sets the error flag
if overwrite mode is set to 'try' and
the file could not be overwritten, or
if the overwrite mode is set to 'on'
and the file could not be overwritten
and the user selects ignore

!include LogicLib.nsh
Section
ClearErrors
SetOverwrite try
SetOutPath $INSTDIR
File "ACC\*.APP"
${If} ${Errors}
  Quit
${EndIf}
SectionEnd
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文