I have this flow which should run when a folder is deleted inside a folder inside sharePoint online document library:-
with those 2 trigger conditions for the IsFolder & Path, as follow:-
but the flow will never get executed/run.. i tried to remove one of the trigger conditions as follow:-
but still the flow will never run. any advice?
The conditions must be true.
IsFolder
and Equals
are already methods returning true
or false
.
So, you do not need to test @equals
with true
.
Also, there is an error syntax in your condition: it's body/IsFolder
and not body/{IsFolder}
Condition should be:
@triggerOutputs()?['body/IsFolder']
The second condition to check a specific folder is already handled by the Folder
parameter of the trigger.
I test on my side: