newFolder method
Creates and returns a new Folder at path.
Implementation
Folder newFolder(String path) {
String convertedPath = convertPath(path);
return resourceProvider.getFolder(convertedPath)..create();
}
Creates and returns a new Folder at path.
Folder newFolder(String path) {
String convertedPath = convertPath(path);
return resourceProvider.getFolder(convertedPath)..create();
}