getFile 方法

Future<Entry> getFile(
  1. String path
)

检索已存在的文件项。如果路径 path 中的文件不存在,或者 path 中的项不是文件,返回的 future 将导致错误。

实现

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