Updated on 2023-12-25 GMT+08:00

Listing Objects

If you have any questions during the development, post them on the Issues page of GitHub. For details about parameters and usage of each API, see the API Reference.

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.