def create_models_directory(self): create_directory(path=self.modelsPath, mode=self.mode)
def create_tests_directory(self): create_directory(path=self.testsPath, mode=self.mode)
def create_blocks_directory(self): create_directory(path=self.blocksPath, mode=self.mode)
def create_pipelines_directory(self): create_directory(path=self.pipelinesPath, mode=self.mode)
def create_tasks_directory(self): create_directory(path=self.tasksPath, mode=self.mode)
def create_project_directory(self): create_directory(path=self.projectDirectory, mode=self.mode)
def create_model_directory(self, modelName): create_directory(path=Path(self.modelsPath, modelName.asSnake), mode=self.mode)