Hi @David Andrews ,
Thank you for the ask. Let me explain a little bit, that way it would be easier to understand the problem. When we create a BlobTrigger function, an Event
is created in the storageAccount with that azure function EndPoint. You can see it by going to the Storage Accout
--> Events
from left side menu. Now Subject Begins With
means prefix, right, so in your case, if you see something like /blobServices/default/containers/status-service/blobs/inbound/Received
, that means this condition is true for any file created in the status-service
container with inbound/Received
prefix. Now, if you want to expand the scope, you have to remove the sub-folder(s). Hope this will help. Thanks!