ensureFolderExists static method

bool ensureFolderExists(
  1. List<String> filePath
)

Implementation

static bool ensureFolderExists(List<String> filePath) {
  if(!projectFileExists(filePath)) {
    createProjectFolder(filePath);
    return true;
  }
  return false;
}