Kermit
Kermit

Reputation: 125

Azure Storage Explorer - Filtering on Last Modified

Apparently we can not sort the blobs easily if there are more than 1000 : you will need to "load more" until the complete list of blob appears and then you can sort them as you wish. Which is really not ideal.

So I want to apply a filter on the 'Last Modified' tag key. But I can't seem to be able to make it work.

I want to get all the blobs from 1st of June and later.

Here I have (at least) 2 blobs from 4th of June 2021 (the displays is set on the french format, but the timestamp shouldn't be impacted) :

1

But whatever filter I try I get nothing :

2

I tried different formats but none are working :

Any ideas on what's going on here ?

Upvotes: 3

Views: 6028

Answers (1)

Gaurav Mantri
Gaurav Mantri

Reputation: 136286

Any ideas on what's going on here?

I believe the issue is that you're trying to filter by LastModified system property of the blob. You can also define tags for a blob and the screenshot you shared is for filtering of blobs based on the tag name/value specified for the blob.

To make the filtering work by tags, you will need to define tags for the blobs and then apply the filtering on those tag name/value.

Upvotes: 2

Related Questions