getFile 方法

Future<Entry> getFile(
  1. String path
)

获取已存在的文件条目。如果路径 path 不存在或路径 path 对应的项不是一个文件,返回的 future 将导致错误。

实现

Future<Entry> getFile(String path) {
  return _getFile(path);
}