How do you download a directory with S3? #109
Answered
by
garrettmaring
garrettmaring
asked this question in
Q&A
-
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.
Answered by
garrettmaring
Jun 13, 2021
Replies: 2 comments 2 replies
-
I'm using |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
garrettmaring
-
Hello! Reopening this discussion to make it searchable. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm using
list_objects
(should I usev2
?) andget_object
to get the job done fine for now.