createDir method
Creates a directory. When recursive is true (the default), missing
parents are created too.
Implementation
@override
Future<Result<void, FileError>> createDir(
String path, {
bool recursive = true,
}) => _fs.createDir(path, recursive: recursive);