sbool isFile(File f) { ret f != null && f.isFile(); } sbool isFile(S path) { ret isFile(newFile(path)); }