fileExists method

bool fileExists(
  1. List<String> projectPath
)

Implementation

bool fileExists(List<String> projectPath) {
  final key = _keyForPath(projectPath);
  final inMem = _findInMemory(key);
  if(inMem != null) {
    return true;
  }

  if(AFProjectPaths.projectFileExists(projectPath)) {
    return true;
  }

  return false;
}