static S f2s(File f) { ret f == null ? null : f.getAbsolutePath(); } static S f2s(java.nio.file.Path p) { ret p == null ? null : f2s(p.toFile()); }