createOrExistsDir static method
Implementation
static bool createOrExistsDir(String dirPath) {
final dir = Directory(dirPath);
if (dir.existsSync()) return true;
try {
dir.createSync(recursive: true);
return true;
} catch (_) {
return false;
}
}