I'm using Azure .Net SDK to list all blobs from Windows Azure Storage Blob container.
let client = account.CreateCloudBlobClient()
let container = client.GetContainerReference("my-container")
let list = container.ListBlobs("data/2014-*-17/", false) // ! here
as you can see i'm trying to filter blobs by wildcarded prefix.
UPD Not supported as 07/2019