Returns true if directory exists or false if not
bool directoryExists(String path) { path = pathExpand(path); return dart_io.Directory(path).existsSync(); }