I know I can get a specific file from an Azure blob container using its name, like this: CloudBlockBlob blockBlob = container.GetBlockBlobReference("myblob.txt");
Is there a way to get all the files in a List? I would like to do something like this, but unfortunately there is no such method: CloudBlockBlob blockBlobList = container.GetBlockBlobReferences(".");