Multiple files upload to Amazon S3
Recently I have downloaded and wor开发者_StackOverflow社区ked 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?
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.
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
精彩评论