I've Just created a Azure Blob Trigger in Azure Function.I can configure that the Blob Name which trigger the Function under the "Path" Properties. I see some examples of how to set the name of the blob here
But in my Case i want to trigger my Azure Function.When ever a file in the pattern like
ABL_{TIMESTAMP}.XML
e.g,
ABL_07022017_000114.xml
when i Changed my path as
"path" :"ABL_{filename}.xml" it works but not for the timestamp i'm afraid
Is there any other way like Using Regex Pattern to find the filenamepattern dynamically for the "Path"
Thanks in Advance
Jayendran