创建一个指定路径的新文件。如果 exclusive 为 true,则在指定的 path 上已存在文件时,返回的 Future 将以错误完成。
exclusive
path
Future<Entry> createFile(String path, {bool exclusive = false}) { return _getFile(path, options: {'create': true, 'exclusive': exclusive}); }