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

دریافت لیست آبجکت‌های یک صندوقچه

مولفه‌

  • نام صندوقچه
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0

namespace ListObjectsExample
{
using System;
using System.Threading.Tasks;
using Amazon.S3;
using Amazon.S3.Model;

public class ListObjects
{
private static IAmazonS3 _s3Client;

public static async Task Main()
{
string bucketName = "<BUCKET_NAME>";
var awsCredentials = new Amazon.Runtime.BasicAWSCredentials("<ACCESS-KEY>", "<SECRET-KEY>");
var config = new AmazonS3Config { ServiceURL = "<ENDPOINT>" };
_s3Client = new AmazonS3Client(awsCredentials, config);

Console.WriteLine($"Listing objects stored in the bucket {bucketName}.");
await ListingObjectsAsync(_s3Client, bucketName);
}

/// <summary>
/// Uses the client object to get a list of the objects in the S3
/// bucket in the bucketName parameter.
/// </summary>
/// <param name="client">The initialized S3 client obect used to call
/// the ListObjectsAsync method.</param>
/// <param name="bucketName">The bucket name for which you want to
/// retrieve a list of objects.</param>
public static async Task ListingObjectsAsync(IAmazonS3 client, string bucketName)
{
try
{
ListObjectsRequest request = new()
{
BucketName = bucketName,
MaxKeys = 5,
};

do
{
ListObjectsResponse response = await client.ListObjectsAsync(request);

// Process the response.
response.S3Objects
.ForEach(obj => Console.WriteLine($"{obj.Key,-35}{obj.LastModified.ToShortDateString(),10}{obj.Size,10}"));

// If the response is truncated, set the marker to get the next
// set of keys.
if (response.IsTruncated)
{
request.Marker = response.NextMarker;
}
else
{
request = null;
}
} while (request != null);
}
catch (AmazonS3Exception ex)
{
Console.WriteLine($"Error encountered on server. Message:'{ex.Message}' getting list of objects.");
}
}
}
}