static S absolutePath(File f) { ret f == null ? "" : f.getAbsolutePath(); } static S absolutePath(S path) { ret path == null ? null : absolutePath(new File(path)); }