پرش به مطلب اصلی

دریافت لیست بخش‌های بارگذاری چند بخشی برای یک آبجکت

مولفه‌ها

using Amazon;
using Amazon.S3;
using Amazon.S3.Model;
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using System.Reflection;
using Newtonsoft.Json;

namespace ListParts
{
class ListParts
{
private const string bucketName = "<BUCKET_NAME>";
private const string objectName = "<OBJECT_NAME>";
private static IAmazonS3 _s3Client;
public static void Main()
{
var awsCredentials = new Amazon.Runtime.BasicAWSCredentials("<ACCESS-KEY>", "<SECRET-KEY>");
var config = new AmazonS3Config { ServiceURL = "<ENDPOINT>" };
_s3Client = new AmazonS3Client(awsCredentials, config);
ListPartsAsync().Wait();
}
private static async Task ListPartsAsync()
{
try
{
ListPartsRequest listPartRequest = new ListPartsRequest
{
BucketName = bucketName,
Key = objectName,
UploadId = "123"
};

ListPartsResponse response = await _s3Client.ListPartsAsync(listPartRequest);

Console.WriteLine(JsonConvert.SerializeObject(response, Formatting.Indented));
}
catch (AmazonS3Exception amazonS3Exception)
{
Console.WriteLine("An AmazonS3Exception was thrown. Exception: " + amazonS3Exception.ToString());
}
catch (Exception e)
{
Console.WriteLine("Exception: " + e.ToString());
}
}
}
}