如何在出错时退出批处理程序?

发布于 2024-09-11 00:58:17 字数 306 浏览 7 评论 0原文

我有一个可以做几件事的批处理文件。如果其中之一失败,我想退出整个程序。例如:

@echo off
type foo.txt 2>> error.txt >> success.txt
mkdir bob

如果找不到文件 foo.txt,那么我希望将 stderr 消息附加到 error.txt 文件,否则将 foo.txt 的内容附加到 success.txt。基本上,如果 type 命令返回 stderr,那么我希望批处理文件退出而不是创建新目录。如何判断是否发生错误并决定是否需要继续执行下一个命令?

I've got a batch file that does several things. If one of them fails, I want to exit the whole program. For example:

@echo off
type foo.txt 2>> error.txt >> success.txt
mkdir bob

If the file foo.txt isn't found then I want the stderr message appended to the error.txt file, else the contents of foo.txt is appended to success.txt. Basically, if the type command returns a stderr then I want the batch file to exit and not create a new directory. How can you tell if an error occurred and decide if you need to continue to the next command or not?

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

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

发布评论

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

评论(1

御弟哥哥 2024-09-18 00:58:17

使用ERRORLEVEL检查上一个命令的退出代码:

 if ERRORLEVEL 1 exit /b

编辑:文档说“如果最后一个命令的退出代码等于或大于X,则条件为真”(您可以使用 if /? 进行检查)。除此之外,您还可以检查文件是否存在,

 if exist foo.txt echo yada yada

如果条件为真,则执行多个命令:

 if ERRORLEVEL 1 ( echo error in previous command & exit /b )

 if ERRORLEVEL 1 (
    echo error in previous command
    exit /b
 )

use ERRORLEVEL to check the exit code of the previous command:

 if ERRORLEVEL 1 exit /b

EDIT: documentation says "condition is true if the exit code of the last command is EQUAL or GREATER than X" (you can check this with if /?). aside from this, you could also check if the file exists with

 if exist foo.txt echo yada yada

to execute multple commands if the condition is true:

 if ERRORLEVEL 1 ( echo error in previous command & exit /b )

or

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