Reputation: 1794
I'm using amplify to download the folder in S3 but as I see it just provide me method to download a single file not the whole folder like .NET SDK (DownloadDirectoryAsync). Do anyone have the way to do it (or workaround).
Thanks in advance.
Upvotes: 1
Views: 1310
Reputation: 8583
You need to list the objects and then download one by one.
Download folder from Amazon S3 bucket using .net SDK
if its a one time thing, you could use cli
aws s3 sync s3://bucket-name
./local-folder`
Upvotes: 1