I am developing Azure Function App using portal. I want to set blob storage path on json input file key value name. How I can?
Asked
Active
Viewed 688 times
1 Answers
0
using compiled c# you can specify the path in your function.json file, I'm not 100% sure if it will work in script version (csx):
{
"name": "myBlob",
"type": "blobTrigger",
"direction": "in",
"path": "testContainerName/{date}-{filetype}.csv",
"connection": "OrderStorageConnection"
}

Thiago Custodio
- 17,332
- 6
- 45
- 90