i have this if statement
if(file_exists( $_SERVER{'DOCUMENT_ROOT'}.$writabledir.$name) && filemtime($_SERVER{'DOCUMENT_ROOT'}.$writabledir.$name) < $olddate) {
if the file is there all is well but if the file is not there I get this error
Warning: filemtime(): stat failed for /User....
I know I can do an if and then an inner if but is there a better way?