According to my code, If %~1
is greater than 7000
, go to ExceedError
IF "%~1" GTR "7000" GOTO ExceedError
Contents of ExceedError
:
ECHO Value exceeded the maximum value. See help file.
EXIT /B
But this happened:
...modules>If "71" GTR "7000" GOTO ExceedError
...modules>Echo Value exceeded the maximum value. See help file.
Value exceeded the maximum value. See help file.
...modules>exit /B
What happened? Is there something wrong?