S3 上のフォルダーを取得し、他のフォルダーやファイルを含むすべてのコンテンツを FTP ディレクトリにアップロードするクラスが必要です。それを処理するための最適な最適化された方法は何ですか?
var client = Amazon.AWSClientFactory.CreateAmazonS3Client();
var request = new ListObjectsRequest()
.WithBucketName("My.SimpleBucket").WithMarker("MyFolder");
using (ListObjectsResponse response = client.ListObjects(request))
{
// here I can get Key and Size and BucketName of each object,
// but to get the stream of each object I gotta
// do again request for each...
// and this doesn't sound very right to me