@override Stream<Entity> list(String dirPath) async* { var (fs, rPath) = getFileSystemAndRelativePathByPath(dirPath); if (fs != null && rPath != null) { yield* fs.list(rPath); } }