I have a Azure Function set up like this.
{
"scriptFile": "identifier.py",
"bindings": [
{
"name": "blob",
"type": "blobTrigger",
"direction": "in",
"path": "customers/{blob}",
"connection": "DL_GEN2_STORAGE"
}
]
}
The problem that I have is that the function triggers for folders as well as files, that are created in the blob storage.
Can one specify that it only triggers for files an not for folders?