| 171 | } |
| 172 | |
| 173 | FileInfoGenerator FileSystem::GetFileInfoGenerator(const FileSelector& select) { |
| 174 | auto fut = FileSystemDefer( |
| 175 | this, default_async_is_sync_, |
| 176 | [select](std::shared_ptr<FileSystem> self) { return self->GetFileInfo(select); }); |
| 177 | return MakeSingleFutureGenerator(std::move(fut)); |
| 178 | } |
| 179 | |
| 180 | Status FileSystem::DeleteFiles(const std::vector<std::string>& paths) { |
| 181 | Status st = Status::OK(); |
nothing calls this directly
no test coverage detected