| 849 | } |
| 850 | |
| 851 | Result<std::string> GcsFileSystem::PathFromUri(const std::string& uri_string) const { |
| 852 | return internal::PathFromUriHelper(uri_string, {"gs", "gcs"}, |
| 853 | /*accept_local_paths=*/false, |
| 854 | internal::AuthorityHandlingBehavior::kPrepend); |
| 855 | } |
| 856 | |
| 857 | Result<FileInfo> GcsFileSystem::GetFileInfo(const std::string& path) { |
| 858 | ARROW_ASSIGN_OR_RAISE(auto p, GcsPath::FromString(path)); |
nothing calls this directly
no test coverage detected