I need a functionality for listing blobs from azure such that if I specify date, the list should only contain blobs created after that date.
Currently I am using BlobDirectory.ListBlobs() function which returns all the blobs. It also has a overloaded function which takes BlobRequestOptions as parameter. I have tried setting the AccessCondition in the BlobRequestOptions to AccessCondition.IfModifiedSince(Date.UTC.Now) but somehow it gives me all the blobs stored in the container.
Any suggestion on what I can do differently to get particular subset of blobs