can someone tell me how can I make errorlevel stop taking value 1 or bigger? I want it to take into consideration only the exact value. If I choose 2, I want it to take the second option. Right now if I choose '1', it executes the option for DLL file instead of LOG. I tried different versions like: if errorlevel 1, tried using brackets with else etc. but none of them worked. Whats wrong with this code?
@echo off
cls
choice /C 12 /M "dll or log?"
if %errorlevel%=="2" dir %1\*.dll >> %2.txt
echo DLL
goto end
if %errorlevel%=="1" dir %1\*.log >> %3.txt
echo LOG
goto end
:end
exit /b
this resolve:
you need control the flow whith "(" ")" and the " around the errorlevel number is not necessary.
BONUS
This an alternative method that is more flexible:
The ~ in the parameters remove eventual sorround double quote. Then the surrond quoted added can prevent parameters with space inside.