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