@Echo off

:Begin
If exist C:\Myfile.txt goto Copyfile
Echo Cannot copy the file because it does not exist.
Goto End

:Copyfile
Copy C:\Myfile.txt C:\Myfile2.txt
Goto End

:End