从 cmd 提示符中的 echo 捕获错误消息

发布于 2024-10-19 22:55:39 字数 285 浏览 2 评论 0原文

我正在 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 技术交流群。

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

发布评论

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

评论(2

纵山崖 2024-10-26 22:55:39
echo FlagValue=Y>>flag.txt || echo access_denied Ensure you have rights

echo FlagValue=Y>>flag.txt
if /i %errorlevel% NEQ 0 do (
  echo access_denied Ensure you have rights
  call sendmail.cmd
)

样品:

C:\Users\Me\Desktop>echo Hello > MyFile.txt || echo ERROR
Access is denied.
ERROR

C:\Users\Me\Desktop>echo Hello > a.txt || echo ERROR

C:\Users\Me\Desktop>
echo FlagValue=Y>>flag.txt || echo access_denied Ensure you have rights

or

echo FlagValue=Y>>flag.txt
if /i %errorlevel% NEQ 0 do (
  echo access_denied Ensure you have rights
  call sendmail.cmd
)

Sample:

C:\Users\Me\Desktop>echo Hello > MyFile.txt || echo ERROR
Access is denied.
ERROR

C:\Users\Me\Desktop>echo Hello > a.txt || echo ERROR

C:\Users\Me\Desktop>
落花随流水 2024-10-26 22:55:39

每次运行命令时,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

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