I am using Azure Storage Explorer to upload blob files into an Azure Storage Account. And would like to send a message to an Azure Storage Queue for every uploaded/updated file.
The message will contain the name of the file. These messages will be used by an Azure Webjob to identify which files to process.
How can this be accomplished? Is there a better way to do it?
Note: I am not using BlobTrigger
inside the webjob because there is no guarantee that it will be notified by the trigger (according to the documentation).