How to get a list of all folders in an container in Blob Storage?
问题 I am using Azure Blob Storage to store some of my files away. I have them categorized in different folders. So far I can get a list of all blobs in the container using this: public async Task<List<Uri>> GetFullBlobsAsync() { var blobList = await Container.ListBlobsSegmentedAsync(string.Empty, true, BlobListingDetails.None, int.MaxValue, null, null, null); return (from blob in blobList.Results where !blob.Uri.Segments.LastOrDefault().EndsWith("-thumb") select blob.Uri).ToList(); } But how can