DOS if esle 判断
方法一
@echo off
if not exist "c:\a\b\c\abc123.exe" (goto tagA) else (goto tagB)
:tagA
echo doing A.....
goto end
:tagB
echo doing B.....
goto end
:end
exit
方法二
IF EXIST C:\1.TXT (echo 文件存在) else (echo 文件不存在)
IF NOT EXIST C:\1.TXT (echo 文件不存在) else (echo 文件存在)