Avatar of Bill Golden
Bill Golden
Flag for United States of America

asked on 

Chemo has taken a lot from me. Why am I getting a syntax error in the simple batch file?

Chemo has taken a lot from me. I am having problem with a batch file and have gone back to square 1 to test simple things.

@ECHO OFF
IF EXIST %1 GOTO ITEXIST
ECHO %%1 DID NOT EXIST
GOTO EXIT
:ITEXIST
ECHO %%1 DID EXIST
:EXIT
ECHO ON

Why am I getting a syntax error?
Windows BatchMicrosoft DOS

Avatar of undefined
Last Comment
Bill Golden

8/22/2022 - Mon