Checks if a file or directory exists.
@override bool existsSync(String path) { return File(path).existsSync() || Directory(path).existsSync(); }