Returns true if the file exist. False, otherwise.
Future<bool> exists() async { _checkIfFileSystemIsTheSame(); File file = _file ?? await this.file(); return file.existsSync(); }