1st solution With the REST interface you can go through
http://somwhere.com/mycontainername/?restype=container&comp=list&delimiter=/&prefix=\Team\SubTeam
and this will return the xml-document only with the files in the "Folder" subcommand (I know that this is not a folder, but it looks like one of the tools)
You may need to create a shared signature in order to access it, you should mark it at the end of the URL.
read here
Where it shows that you can filter the blobname prefix.
2nd solution This is probably closer to what you want. If you can use the new repository client that was updated in azure sdk 1.3, now you can use
IEnumerable blobList = client.ListBlobsWithPrefix ("Team / SubTeam"); A.
Where Client is an instance of CloudBlobClient.
EDIT - November 18, 2013 it seems that resttype is no longer supported as a parameter, and it should be repeated. It seems to have happened calmly on the weekend. I changed the url example above.
David steele
source share