我有一个简单的代码来运行程序,见下文:
@echo off
START Apps\Test.exe
Exit
我希望在所需文件不存在时隐藏错误消息:
Windows cannot find 'Apps\Test.exe'. Make sure you typed the name correctly, and then try again.
此START Apps\Test.exe >nul 2>nul
无效。
此外,我不想删除START
命令,如下所示:Apps\Test.exe
因为它会导致批处理文件在Test.exe
关闭之前保持打开状态。
有什么办法吗?
答案 0 :(得分:0)
if exist "Apps\Test.exe" START Apps\Test.exe
应该可以防止您的错误消息出现