How to specify multiple file types for Azure Function Blob Trigger input binding?
问题 I'm looking to only allow the upload of specific filetypes to Azure Storage to trigger an Azure Function. Current function.json file: { "scriptFile": "__init__.py", "bindings": [{ "name": "myblob", "type": "blobTrigger", "direction": "in", "path": "{name}.json", "connection": "storage-dev" }] } Would I just add another path value like this... "path": "{name}.json", "path": "{name}.csv" ...or an array of values like this... "path": [ "{name}.csv", "{name}.json" ] Can't seem to find an example