Amazon Simple Storage Service
Developer Guide (API Version 2006-03-01)
Print this pageEmail this pageGo to the ForumsView the PDFShare this page on TwitterShare this page on FacebookBookmark this page on DeliciousSubmit this page to RedditSubmit this page to DiggDid 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);