Can someone assist me, is it possible to move an incoming folder from one doc library to another with flow?
The folder will be uploaded to the root of lib1 via syncing and will always contain 1 document.
I simply need to move them as they arrive (or soon after) to the root of library 2.
Thanks in advance.
Hi @Victoria ,
I made a sample for you:
Create a flow with the trigger 'When a file is created' and the next action is ‘Move folder’
Set a trigger condition that can only be triggered when the new item is a folder.
@equals(triggerOutputs()?['body/{IsFolder}'], true)
Save and run flow. Create a folder in the first library.
After the flow is triggered, the folder is moved to the second library.
Best Regards,
Wearsky