static bool renameFileIfExists(File a, File b) { ret fileExists(a) && renameFile(a, b); } static bool renameFileIfExists(File a, S newName) { ret fileExists(a) && renameFile(a, newName); }