createFile 方法

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

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

实现

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