I have an existing Azure Function that is on a consumption plan
I am writing another function which will call this
Once the existing function is running, it processes files in storage account.
In order the files in my storage account to be processed, we have to manually go into the portal and "wake up" the function by navigating
Is there a way to do this via C# code?
This function is hosted on a consumption based plan
Trigger
attribute indicating the trigger type. You should look into the various trigger options, as e.g. a blob arriving in blob storage is one of them and might fit what you’re trying to do with a single function. – sellotape