exists method

bool exists()

Implementation

bool exists() {
  if (!readable) return false;
  if (!_cache._civilizedFileSystem && (currentEditor != null || zombie)) {
    return false;
  }
  return true;
}