| 3103 | } |
| 3104 | |
| 3105 | Result<std::string> S3FileSystem::PathFromUri(const std::string& uri_string) const { |
| 3106 | return internal::PathFromUriHelper(uri_string, {"s3"}, /*accept_local_paths=*/false, |
| 3107 | internal::AuthorityHandlingBehavior::kPrepend); |
| 3108 | } |
| 3109 | |
| 3110 | Result<std::string> S3FileSystem::MakeUri(std::string path) const { |
| 3111 | if (path.length() <= 1 || path[0] != '/') { |