| 3005 | } |
| 3006 | |
| 3007 | Status EnsureParentExists(const S3Path& path) { |
| 3008 | if (path.has_parent()) { |
| 3009 | return EnsureDirectoryExists(path.parent()); |
| 3010 | } |
| 3011 | return Status::OK(); |
| 3012 | } |
| 3013 | |
| 3014 | static Result<std::vector<std::string>> ProcessListBuckets( |
| 3015 | const Aws::S3::Model::ListBucketsOutcome& outcome) { |
no test coverage detected