| 3044 | } |
| 3045 | |
| 3046 | Result<std::string> S3FileSystem::PathFromUri(const std::string& uri_string) const { |
| 3047 | return internal::PathFromUriHelper(uri_string, {"s3"}, /*accept_local_paths=*/false, |
| 3048 | internal::AuthorityHandlingBehavior::kPrepend); |
| 3049 | } |
| 3050 | |
| 3051 | Result<std::string> S3FileSystem::MakeUri(std::string path) const { |
| 3052 | if (path.length() <= 1 || path[0] != '/') { |