Multiple files upload to Amazon S3

2019-08-28 09:32发布

问题:

Recently I have downloaded and worked with Amazon S3 .NET SDK. There is a provision to upload a single file at a time. But I want to upload multiple files in single request.

Is there any possibility to do this?

回答1:

You cannot upload multiple files in a single request, however, you can easily upload multiple files in parallel.

The simplest way would be use the Task Parallel Library included in .Net 4.



回答2:

Maybe this article can help you : http://www.codeproject.com/Articles/68775/Uploading-Multiple-Files-To-Amazon-S3-From-ASP-NET

It uses Aurigma Image Uploader