Use the Directory create()
method to create a directory. To create intermediate directories, set the recursive argument to true (default is false).
import 'dart:io';
main() async {
// Creates dir/ and dir/subdir/.
var directory = await new Directory('dir/subdir').create(recursive: true);
print(directory.path);
}
Copyright© 2013-2019