static bool dirExists(S path) {
  ret path != null && new File(path).isDirectory();
}

static bool dirExists(File f) {
  ret f != null && f.isDirectory();
}