I'd like to be able to list the 5 oldest blobs within a container.
I'm creating a client:
CloudStorageAccount.TryParse(connection, out CloudStorageAccount storageAccount);
var blobClient = storageAccount.CreateCloudBlobClient();
At this step, I need to grab the 5 oldest blobs in order to copy them to a different container.
How do we list the 5 oldest blobs in a container?