| 480 | } |
| 481 | |
| 482 | Result<std::string> HadoopFileSystem::PathFromUri(const std::string& uri_string) const { |
| 483 | return internal::PathFromUriHelper(uri_string, {"hdfs", "viewfs"}, |
| 484 | /*accept_local_paths=*/false, |
| 485 | internal::AuthorityHandlingBehavior::kIgnore); |
| 486 | } |
| 487 | |
| 488 | Result<std::vector<FileInfo>> HadoopFileSystem::GetFileInfo(const FileSelector& select) { |
| 489 | return impl_->GetFileInfo(select); |
nothing calls this directly
no test coverage detected