Returns true if file exists or false if not
bool fileExists(String path) { path = pathExpand(path); return dart_io.File(path).existsSync(); }