Assembly in use: Assembly Microsoft.WindowsAzure.Storage, Version=9.3.1.0
What I want to do: In my Azure storage, I have images stored as a blob, in the following fashion
I want to get the URLs of all the image blobs along with their last modified timestamp.
Please note that Image1 and Image4 might have the same name.
What I have tried:
I tried
ListBlobsSegmentedAsync(BlobContinuationToken currentToken)from the root of the container and by usingGetDirectoryReference(string relativeAddress)but couldn't get the desired result.Though a bit off track, I am able to get the blob details by
GetBlockBlobReference(string blobName);
What should I do?
Thanks in advance.

