Batch Script If/Else

If File Exists

if exist "PATH" (
    goto end
) else (
    goto install
)
 
:end
...
:install
...