I know this is a basic feature but I can't figure out how to make it work:

IF EXIST "C:\file1.txt" OR "C:\file2.txt"
DO SOMETHING
ENDIF

I want to do something if one or both files exist. It seems that when I use the OR statement, it runs the program no matter what. Even if neither of the files exist.

Is there a different way to do this or am I using the wrong syntax?

Thanks,