static File getCanonicalFile(S path) ctex { ret path == null ? : newFile(path).getCanonicalFile(); } static File getCanonicalFile(File f) ctex { ret f == null ? null : f.getCanonicalFile(); }