Page 1 of 1
how to check file exists or not : batch script
Posted: 19 Sep 2019 05:19
by Rajnishjc_27
hi all,
how to check file exists or not in folder with IF...Else condition.
please help
Re: how to check file exists or not : batch script
Posted: 19 Sep 2019 19:32
by ShadowThief
Code: Select all
If exist file.txt (
echo File exists
) else (
echo File does not exist
)
Re: how to check file exists or not : batch script
Posted: 27 Sep 2019 12:02
by Squashman
The help file gives some pretty clear information on how to do that.
Code: Select all
C:\>if /?
Performs conditional processing in batch programs.
IF [NOT] ERRORLEVEL number command
IF [NOT] string1==string2 command
IF [NOT] EXIST filename command
NOT Specifies that Windows should carry out
the command only if the condition is false.
ERRORLEVEL number Specifies a true condition if the last program run
returned an exit code equal to or greater than the number
specified.
string1==string2 Specifies a true condition if the specified text strings
match.
EXIST filename Specifies a true condition if the specified filename
exists.