How do you download a directory with S3? #109
-
When attempting to download a directory and invoke
This is using the sample code https://github.com/awslabs/aws-sdk-rust/blob/main/sdk/examples/s3-helloworld/src/main.rs. let resp = client
.get_object()
.bucket(BUCKET)
.key("my-directory/")
.send(); When downloading a single file, it works as expected. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
I'm using |
Beta Was this translation helpful? Give feedback.
-
Hello! Reopening this discussion to make it searchable. |
Beta Was this translation helpful? Give feedback.
I'm using
list_objects
(should I usev2
?) andget_object
to get the job done fine for now.