Updated on 2023-03-16 GMT+08:00

Listing Objects

After objects are uploaded, you may want to view the objects contained in a bucket. Sample code is as follows:

ListObjectsRequest request = new ListObjectsRequest();
request.BucketName = "bucketname";
ListObjectsResponse response = client.ListObjects(request);
foreach (ObsObject Object in response.ObsObjects)
{
    Console.WriteLine("ObjectKey={0}, Size={1}", Object.ObjectKey, Object.Size);
}
  • You can call ListObjectsResponse.ObsObjects to obtain the descriptions of all objects.
  • In the previous sample code, 1000 objects will be listed, by default.
  • For more information, see Listing Objects.