I turned off echo in bat file.

@echo off

then i do something like this

...
echo %INSTALL_PATH%
if exist %INSTALL_PATH%(
echo 222
...
)

and i get "The system cannot find the path specified." message between those two echos

what can be the reason of this message and why message ignores echo off ?

link|improve this question

If the path has spaces is it quoted? if not if exist "%INSTALL_PATH%" (... – Alex K. Jan 11 at 17:23
1  
Warnings are displayed even if you are set echo to off, @echo off just means that no commands should be echoed to the terminal. – Krister Andersson Jan 11 at 17:29
In addition to adding quotes around the path, add a space before the ( – dbenham Jan 11 at 17:50
no quotes in INSTALL_PATH – Aleksandr Kravets Jan 12 at 8:53
feedback

3 Answers

up vote 6 down vote accepted

As Mike Nakis said, echo off only prevents the printing of commands, not results. To hide the result of a command add >nul to the end of the line, and to hide errors add 2>nul. For example:

Del /Q *.tmp >nul 2>nul

Like Krister Andersson said, the reason you get an error is your variable is expanding with spaces:

set INSTALL_PATH=C:\My App\Installer
if exist %INSTALL_PATH% (

Becomes:

if exist C:\My App\Installer (

Which means:

If "C:\My" exists, run "App\Installer" with "(" as the command line argument.

You see the error because you have no folder named "App". Put quotes around the path to prevent this splitting.

link|improve this answer
i've quotted %INSTALL_PATH%. that message disapeared. but i've got new error. "( was unexpected at this time." i'll ask another question. Thanks! – Aleksandr Kravets Jan 12 at 9:12
feedback

"echo off" is not ignored. "echo off" means that you do not want the commands echoed, it does not say anything about the errors produced by the commands.

The lines you showed us look okay, so the problem is probably not there. So, please show us more lines. Also, please show us the exact value of INSTALL_PATH.

link|improve this answer
feedback
@echo off
// quote the path or else it won't work if there are spaces in the path
SET INSTALL_PATH="c:\\etc etc\\test";
if exist %INSTALL_PATH% (
   //
   echo 222;
)
link|improve this answer
You can also put the quotes around the variable: IF EXIST "%INSTALL_PATH%". – aphoria Jan 11 at 17:48
@aphoria - Jupp, that will work just fine. – Krister Andersson Jan 11 at 17:54
I only mention it because sometimes you need to append to variable and having the quotes as part of the value make that more difficult. – aphoria Jan 11 at 18:56
1  
Also, you don't want the double backslashes...one will do, C:\etc etc\test. – aphoria Jan 11 at 18:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.