从 cmd 提示符中的 echo 捕获错误消息
我正在 cmd 批处理脚本中将一些文本写入文本文件,如下所示:
echo FlagValue=Y>>flag.txt
这通常工作正常,但偶尔如果文本文件由不同进程打开,则会返回一条错误消息,指出“访问被拒绝”。我想做的是,如果发生类似以下错误,则停止批处理文件:
if return_code GEQ 1 GOTO ERR
但无法从 echo 命令找到返回代码。是否存在,或者是否有更好的策略来捕获错误消息?
I'm writting out some text to a text file within a cmd batch script like such:
echo FlagValue=Y>>flag.txt
This normally works fine but occassionally if the text file is open by a different process, an error messgae is returned saying Access Denied. What I'd like to do is stop the batch file if an error occurs with something like:
if return_code GEQ 1 GOTO ERR
But can't find a return code from echo command. Does one exist, or is there a better tactic to use to capture error message?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
或
样品:
or
Sample:
每次运行命令时,ERRORLEVEL 环境变量都会设置为命令的返回值。因此,在运行命令后立即尝试 echo %ERRORLEVEL% 。 (请小心,因为您在其间运行的任何命令(包括 echo)都会覆盖 %ERRORLEVEL%。
此外,请查看以下内容以获取更多信息:
可以使用批处理文件吗捕获它正在调用的命令的退出代码?
批处理文件 - 错误处理
Everytime you run a command the ERRORLEVEL environment variable is set to your command's return. So try echo %ERRORLEVEL% straight after you run your command. (Be careful as any command you run inbetween (including echo) will override the %ERRORLEVEL%.
Also, check these out for more information:
Can a batch file capture the exit codes of the commands it is invoking?
Batch Files - Error Handling