Для этого требования я предоставляю образец для справки.
1. Создать триггер " При добавлении или изменении большого двоичного объекта (только свойства)"нажмите" Настройки "триггера и установите Split On
как" Выкл.".
2. Then use "Get blob content" action and put the expression triggerBody()[0]?['Path']
into the "Blob" box.
If you want to get the first blob, just use the expression above. If want to get the second, use triggerBody()[1]?['Path']
. If third....
3. When add files to container, the logic app will be triggered twice. The first time fails because of the triggerBody is empty list(I'm not sure why it will be triggered twice, maybe it's a bug). We do not need to worry about the first fail, the second trigger will success and we can get the result expected in second trigger. I added three files to the container, and the result show as blow:
введите описание изображения здесь