In my Mule 4 application I Azure Storage connector to successfully upload a blob to my Azure container:
However this adds the file into the root directory of "my-container".
I want to add the file to my-container/examples
- i.e. the examples folder inside my-container.
How can I do this within Mule 4?
Connector XML (edit):
<azure-storage:upload-blob doc:name="Upload Json" doc:id="63fa613e-b355-4b6f-9f81-4ddd8dd40998" config-ref="azure_storage_config">
<azure-storage:storblob container="my-container" fileStream="#[payload]" fileName="file.json"/>
</azure-storage:upload-blob>