hi all,
how to check file exists or not in folder with IF...Else condition.
please help
how to check file exists or not : batch script
Moderator: DosItHelp
-
- Expert
- Posts: 1166
- Joined: 06 Sep 2013 21:28
- Location: Virginia, United States
Re: how to check file exists or not : batch script
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
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.