Amazon Simple Storage Service
Developer Guide (API Version 2006-03-01)
« PreviousNext »
View the PDF for this guide.Go to the AWS Discussion Forum for this product.Go to the Kindle Store to download this guide in Kindle format.Did this page help you?  Yes | No |  Tell us about it...

List Multipart Uploads

The following tasks guide you through using the low-level .NET classes to list all in-progress multipart uploads on a bucket.

Low-Level API Multipart Uploads Listing Process

1

Create an instance of the ListMultipartUploadsRequest class and provide the bucket name.

2

Execute the AmazonS3Client.ListMultipartUploads method. The method returns an instance of the ListMultipartUploadsResponse class, providing you the information about the in-progress multipart uploads.


The following C# code sample demonstrates the preceding tasks.

ListMultipartUploadsRequest allMultipartUploadsRequest = new ListMultipartUploadsRequest()
   .WithBucketName(existingBucketName);
ListMultipartUploadsResponse mpUploadsResponse = s3Client.ListMultipartUploads(allMultipartUploadsRequest);