I'm trying to get everything in the "10" prefix, like this:
https://ideesstorage.blob.core.windows.net/development-fotosproyectos/10/29.jpg
So far I can only get this using the directory.Uri:
https://ideesstorage.blob.core.windows.net/development-fotosproyectos/10/
The following code gets all the directories within my container and not the filenames in the prefix, as expected:
var query = blobContainer.ListBlobs(null, false, BlobListingDetails.None);
foreach (IListBlobItem item in query)
{
if (item.GetType() == typeof(CloudBlobDirectory))
{
CloudBlobDirectory directory = (CloudBlobDirectory)item;
Console.WriteLine("Directory: {0}-{1}", directory.Uri, directory.Prefix);
}
}
What I want is for this to get the Uri of every file in the specified prefix.
Thanks in advance for your time.
Take a look at the code below:
Basically, you need to pass
true
foruseFlatBlobListing
parameter and thename of the folder
asprefix
("10"
in your case).