createFile 方法

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

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

实现

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