sbool absoluteDirExists(S path) { ret isAbsoluteFile(path) && isDir(path); } sbool absoluteDirExists(File f) { ret isAbsoluteFile(f) && isDir(f); }