createDirectory 方法

Future<Entry> createDirectory(
  1. String path, {
  2. bool exclusive = false,
})

使用指定的 path 创建一个新的目录。如果 exclusive 为 true,当指定的 path 已存在目录时,返回的 Future 将因错误而完成。

实现

Future<Entry> createDirectory(String path, {bool exclusive = false}) {
  return _getDirectory(path,
      options: {'create': true, 'exclusive': exclusive});
}