getDirectory 方法

Future<Entry> getDirectory(
  1. String path
)

获取已存在的目录项。如果 path 指定的目录不存在或 path 指定的项不是目录,返回的 future 将导致错误。

实现

Future<Entry> getDirectory(String path) {
  return _getDirectory(path);
}