You do realise that you have your check the wrong way around?
!file_exists() is true if the file does not exist.
besides that php sometimes (and I'm not saying it's the case here) prefers to have brackets around whatever you want to negate:
if (!(file_exists()))
{
};