sbool fileIsNewerThanOtherFile(File a, File b) { ret fileExists(a) && fileExists(b) && a.lastModified() > b.lastModified(); }