Hi All,
I was searching for a trigger "When a Folder is created" in SharePoint. But I didn't come across in my search.
Here is the scenario I am working on.
When a Folder is created in SharePoint Site A, Copy the folder to Destination SharePoint Site B
Could some one give me any idea how do I proceed
Thanks
Solved! Go to Solution.
You can use a trigger condition on a When a File is created action (properties only) and the following expression:
@if(equals(triggerBody()?['{IsFolder}'],true),true,false)
To add the trigger condition, go to the settings for the trigger.
Hi @satyakanth
You can use when file create trigger. once you get the file properties there is a property called -isFolder. you can use this to determine if it is folder or not.
You can use a trigger condition on a When a File is created action (properties only) and the following expression:
@if(equals(triggerBody()?['{IsFolder}'],true),true,false)
To add the trigger condition, go to the settings for the trigger.
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
Learn to digitize and optimize business processes and connect all your applications to share data in real time.
User | Count |
---|---|
12 | |
9 | |
7 | |
7 | |
7 |
User | Count |
---|---|
19 | |
18 | |
17 | |
10 | |
7 |