ensureFolderExistsForFile static method

bool ensureFolderExistsForFile(
  1. List<String> filePath
)

Implementation

static bool ensureFolderExistsForFile(List<String> filePath) {
  final temp = List<String>.of(filePath);
  temp.removeLast();
  return ensureFolderExists(temp);
}