Azure Functions with blob storage. How to create a BlobTrigger to a sub-folder?
问题 I need to react to a blob that's added into a sub-folder. I know that blob storage doesn't recognize the folders, they are just virtual, but I still can't figure out how to create a blob trigger if files are added to sub-folders. Example: Excerpt from function.json : { "name": "myblob", "type": "blobTrigger", "direction": "in", "path": "rootContainer/{name}" } OK, a function is triggered and I receive the blob Excerpt from function.json : { "name": "subfolder/myblob", "type": "blobTrigger",