Posts

Showing posts from September, 2020

How to download directory from AWS S3 bucket in C#?

Download Directory from Amazon S3   AIM : Download whole directory from AWS S3 bucket using .NET SDK in C#. TransferUtility  Class : Provides high level utility for managing transfer to and from Amazon S3 bucket. TransferUtility provides simple API for uploading and downloading content from Amazon S3. It widely uses  Amazon S3 multipart uploads to achieve enhanced throughput, performance and reliability. When dealing with large content size and high bandwidth, this can increase throughput significantly. Inheritance Hierarchy :             Amazon.S3.Transfer.TransferUtility Namespace :        Amazon.S3.Transfer TransferUtility has so many methods which can use to download directory from Amazon S3 , download single file to the Amazon S3, upload single file or multiple file to the Amazon S3 ,etc. C#  Syntax   : TransferUtility.DownloadDirectory(               String...