void createDirectories(List<String> paths) { for (final path in paths) { Directory(path).createSync(recursive: true); } }