createDirectory 方法

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

创建一个指定路径的新的目录。如果 exclusive 为 true,则如果指定的 path 已存在目录,则返回的 Future 将以错误完成。

实现

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