Is there a way to activate the Azure feature without a specific specific container?
I expect this feature to be run for any file in any container. The file and container names must be in variables.
*****function.json: { "bindings": [ { "type": "blobTrigger", "name": "myBlob", "path": "{container}/{name}", "connection": "AzureWebJobsStorage", "direction": "in" } ], "disabled": false } *****run.csx: public static void Run(Stream myBlob, string name, string container, TraceWriter log, out string outputSbMsg) { log.Info("C# Blob trigger function Processed blob"); log.Info(name); log.Info(container); }
However, nothing starts. Any idea what is wrong?
source share