static bool fileExists(S path) { ret path != null && new File(path).exists(); } static bool fileExists(File f) { ret f != null && f.exists(); }