I'm trying to find if a file exists in blob storage using the get metadata function, but only if has been modified in the last 5 minutes.. I am using the following settings:

This sends the below json:
`{
"dataset": {
"referenceName": "LandingExcel",
"type": "DatasetReference",
"parameters": {
"FilePath": "2021/06/25",
"FileName": "2019.xlsx"
}
},
"fieldList": [
"exists",
"lastModified"
],
"storeSettings": {
"type": "AzureBlobStorageReadSettings",
"recursive": true,
"modifiedDatetimeStart": "2021-06-25T12:57:45.9744278Z",
"modifiedDatetimeEnd": "2021-06-25T13:02:45.9744278Z",
"enablePartitionDiscovery": false
}
}`
But the response is still showing a file existing even though it is outside of the 5 minute window:
{ "exists": true, "lastModified": "2021-06-25T09:50:45Z", "effectiveIntegrationRuntime": "VNet-IR", "executionDuration": 0, "durationInQueue": { "integrationRuntimeQueue": 80 }, "billingReference": { "activityType": "PipelineActivity", "billableDuration": [ { "meterType": "ManagedVNetIR", "duration": 0.016666666666666666, "unit": "Hours" } ] } }
Am I misunderstanding the functionality or doing something wrong? Is there a different way to filter the metadata response by a time period?

