cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
N2P3
New Member

If SharePoint Folder create than create subfolder in the created folder

Hello everyone,

 

I have a challenge that I would like to solve automatically.

 

I would like that when I create a folder in a SharePoint document library (1st level), 5 subfolders (2nd level) automatically become in the created folder.

 

So I create a Vegetarian folder in the document library and the target screen should then look like this:

 

/Vegetarian
//Breakfast
//Brunch
//Lunch
//Teatime
//Dinner


Many thanks in advance and best regards
Nick

47 REPLIES 47

The flow worked like a charm! You deserve a big "THANK YOU" for this

 

Could you please tell me if we can have the same functionality but the first trigger to be a new item created in a list ?

 

The process should be like this:

  1. Add a new item in a list (e.g. Clients List).
  2. Take the "Title" of the list item and create a new folder with that name in the root of a document library in the same site (e.g. Clients Document Library).
  3. All other functionality beyond that would be as you have provided.

Thank you for your invaluable help!


@jameela1 wrote:

Thanks @ekarim2020 This is working perfectly..Thanks lot!!!

 

Is there is any possibility to setup security for example folder "Breakfast" should be access by Peter or GroupMembers other should not permit. Please advise.

 

Thanks


I think your SharePoint administrator should advise you here. The setup of the permissions of the SharePoint site and the SharePoint document library, and the management of those permission will be very difficult to manage and understand.  I would advise against doing this. You need to have a very a good understanding of SharePoint security and how to implement it and can ensure that those who arent supposed to have access to content really are prevented from accessing content.

 

"However, if you don’t understand the security and administration implications of unique permissions, keeping track of who can access what can quickly turn into your worst nightmare."  Governing Unique Permissions in Office 365 - SysKit

 

Ellis


@DiligentSway wrote:

The flow worked like a charm! You deserve a big "THANK YOU" for this

 

Could you please tell me if we can have the same functionality but the first trigger to be a new item created in a list ?

 

The process should be like this:

  1. Add a new item in a list (e.g. Clients List).
  2. Take the "Title" of the list item and create a new folder with that name in the root of a document library in the same site (e.g. Clients Document Library).
  3. All other functionality beyond that would be as you have provided.

Thank you for your invaluable help!


You could try a simple flow like this:

Snag_19811abe.png

with a trigger condition to only trigger the flow when an item is created:

@not(triggerOutputs()?['body/{IsFolder}'])

Snag_1978977c.png

Hope this helps.

 


Ellis
____________________________________
If I have answered your question, please mark the post as Solved.
If you like my response, please give it a Thumbs Up.

 

 

 

Hey Ellis, thank you very much for your response.

 

Could you please tell me if the other sequence should remain the same? I mean for the subfolders creation using the Variable --> Compose --> Condition. Edit-your-flow-Power-Automate.png

Hi @DiligentSway ,

 

The remainder of the flow would be the same as before but with a change to the folder path in the Create Folder action:

Snag_a72c19c.png

 

The the following trigger condition is only needed if your Client List allows the user to create folders:

Snag_a7494a6.png

In the Advanced settings for the Client List, the Make New Folder option is available to users:

Snag_a7ae7f9.png


Ellis
____________________________________
If I have answered your question, please mark the post as Solved.
If you like my response, please give it a Thumbs Up.

Hi @ekarim2020 ,

 

This is awesome! Thank you for taking the time to reply and analysing the steps needed for the flow to work.

 

All the best to you my friend!

Hi @ekarim2020,

 

I am trying to do something similar where when a folder is created three folders deep, the new folder itself auto populates. However upon running this for a folder embedded in the file path below, it just creates a copy of the new folder to Documents and auto populates it there (See Below) Power automate Flow.PNG

 The new folder created as a test is called test (coincidentally) and instead of populating test in the folder path: Shared Documents/Share Area/DMcK, it copies test and pastes it into Documents where it populates it with sub folders here instead. Test here should be located within another folder in Share Area, not in Documents

Saved to worng place.PNG

 

Settings.PNG

 

Have you an idea as to what I am doing wrong?

Hi @David6010 ,

 

Add a third trigger action so that the flow only triggers if the newly created folder has a folder path that contains 'Shared Documents/Share Area/DMcK'  . See trigger (3) below for an example:

ekarim2020_2-1657536532782.png

 

Your create action would be similar to the screen below:

ekarim2020_3-1657536628263.png

 

Name property contains the name of the new folder that triggered the flow.

 

Hope this helps.


Ellis
____________________________________
If I have answered your question, please mark the post as Solved.
If you like my response, please give it a Thumbs Up.

Hi @ekarim2020 ,

 

That worked a treat thank you!!!

Anonymous
Not applicable

Hello!

 

I followed the instructions (the best I could) and recreated the process to create subfolders in the created folder. My issue is, the subfolders are also becoming their own folders with subfolders.

 

For example:

1. I created a folder named "Trigger"

marrah_0-1682979817614.png

2. The goal was to create three subfolders (Test 1, Test 2, Test 3) which was done successfully

marrah_1-1682979916009.png

3. But as you can see from screenshot 1, it also created three folders in the same level as "Trigger" with the names Test 1, Test 2, and Test 3. Each of those folders also has three subfolders:

marrah_2-1682980012896.png

 

How do I fix my automation to only add three subfolders when creating a new folder such as "Trigger"?

 

Here is what I have the flow set up as:

11

22

33

 

Thank you!

Please show the trigger conditions for the "When a file is created" action.


Ellis
____________________________________
If I have answered your question, please mark the post as ☑️ Solved.
If you like my response, please give it a Thumbs Up.
My Blog Site

Anonymous
Not applicable

Sorry about that!

Trigger:

Trigger.png

@triggerOutputs()?['body/{IsFolder}']

Hi @Anonymous ,

 

Try changing the folder path to the following:

Snag_aea4fc0.png

Also, I think the flow needs to trigger only when a Folder is created under "Documents\Path 1\Path 2\Automation Test"? For example, a folder called Trigger will have the path "Documents\Path 1\Path 2\Automation Test\Trigger"

 

Add a trigger condition that triggers the flow:

(1) when a folder is created 4 levels (or folders) deep:

Snag_ad94e4b.png

@equals(length(split(triggerOutputs()?['body/{FullPath}'],'/')),4)

 

(2) and if the path of the new folder starts with "Share Documents/[Path1]/[Path2]/Automation Test":

Snag_af4de24.png

Please see the following for an example 

Solved: Re: If SharePoint Folder create than create subfol... - Power Platform Community (microsoft.com)

 


Ellis
____________________________________
If I have answered your question, please mark the post as ☑️ Solved.
If you like my response, please give it a Thumbs Up.
My Blog Site

Anonymous
Not applicable

Thank you for the response.

 

I tested it, and the changes did not trigger anything when a new folder was created.

 

marrah_0-1683055945714.png

marrah_1-1683056026473.png

 

 

@equals(length(split(triggerOutputs()?['body/{FullPath}'],'/')),4)

@startsWith(triggerOutputs()?['body/{FullPath}'],'Documents/Path 2/Path 3/Automation Test')

 

Unchanged:

marrah_3-1683056182813.png

 

 

 

Hi @Anonymous ,

 

I created the following flow on my testing site.

This is my demo site showing the document Library "Documents" :

Snag_bbb3450.png

These are my three trigger conditions:

 

Snag_ba7f5dc.png

@triggerOutputs()?['body/{IsFolder}']
@startsWith(triggerOutputs()?['body/{FullPath}'],'Shared Documents/Path 2/Path 3/Automation Test')
@equals(length(split(triggerOutputs()?['body/{FullPath}'],'/')),5)

 

The New folder will be created at a folder depth of "5" (correction to previous value of 4):

 

Snag_bac89cb.png

 

 

Snag_baeebf6.png

 

This is the folder path I selected in the "When a file is created (properties only)" trigger:

/Shared Documents/Path 2/Path 3/Automation Test

These are the sub folders that need to be created:

Snag_baf7da7.png

 

I'm using an expression in the compose action to help create the path for the new subfolders (Test 1, Test 2 and Test 3) so I don't have to type the path "Path 2/Path 3/Automation Test/" in to the Create new folder action later.

Snag_bb043a7.png

last(split(triggerOutputs()?['body/{FullPath}'],'Shared Documents/'))

 

Snag_bb64ca2.png

Snag_bc0afc1.png

 

 Hope this helps.

 


Ellis
____________________________________
If I have answered your question, please mark the post as ☑️ Solved.
If you like my response, please give it a Thumbs Up.
My Blog Site

 

Anonymous
Not applicable

That did it!

Thank you SO much!

HI @ekarim2020 

 

I tried your example as you have posted here (which is really detailed and great!!).  The only difference is that I get the sub folders from a list with the ODATA filtering the sub folder names based on the folder that was just created.

 

The structure should be:

Library (Template)

Folder 1 (Order Suite in this case)

Folder 2 (sub folders to be created under folder 1)

Unfortunately, the sub folder is not created and the flow seems to get stuck on the final step of Create new folder.

 

This is what I do:

On the trigger (When a file is created (Properties Only), I have this in the trigger conditions

 

Screenshot 2023-07-16 at 10.42.58.png

Then, when I have the subfolder items in my array,

 

Screenshot 2023-07-16 at 10.43.45.png

 

And finally on the create folder Apply to each, I have this:

Screenshot 2023-07-16 at 10.44.51.png

 

The compose 4 contains this string (to check that the structure was correct) :

last(split(triggerOutputs()?['body/{FullPath}'],'Template/'))

 

When it runs, it sticks on the very last part and no sub folders are created:

Screenshot 2023-07-16 at 10.49.32.png

 

I'm not sure why it does this.  Any idea what I am doing wrong?


Stephen

I figured out the problem.  When I create the list items, there appears to be a blank character at the end of the string and this seems to mess up the creation of the folder.  When I trim the string, it works fine!

I'm glad you were able to get it working! And thanks for sharing the fix, I know it will help others who may experience the same issue.

 

Ellis 

Wrong place - sorry

Helpful resources

Announcements

Community will be READ ONLY July 16th, 5p PDT -July 22nd

Dear Community Members,   We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd.   During this period, members will not be able to Kudo, Comment, or Reply to any posts.   On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities.   What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!

Summer of Solutions | Week 4 Results | Winners will be posted on July 24th

We are excited to announce the Summer of Solutions Challenge!    This challenge is kicking off on Monday, June 17th and will run for (4) weeks.  The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions to as many questions as you can. Answers can be provided in all the communities.    Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”)   - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024   Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods.  You must enter into each weekly Entry Period separately.   How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different.    Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers.  At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing.  Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner.  A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random.  Individuals will be contacted before the announcement with the opportunity to claim or deny the prize.  Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners.   Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event.   ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE**   Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Community MembersNumber SolutionsSuper UsersNumber Solutions Deenuji 9 @NathanAlvares24  17 @Anil_g  7 @ManishSolanki  13 @eetuRobo  5 @David_MA  10 @VishnuReddy1997  5 @SpongYe  9JhonatanOB19932 (tie) @Nived_Nambiar  8 @maltie  2 (tie)   @PA-Noob  2 (tie)   @LukeMcG  2 (tie)   @tgut03  2 (tie)       Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 2: Community MembersSolutionsSuper UsersSolutionsPower Automate  @Deenuji  12@ManishSolanki 19 @Anil_g  10 @NathanAlvares24  17 @VishnuReddy1997  6 @Expiscornovus  10 @Tjan  5 @Nived_Nambiar  10 @eetuRobo  3 @SudeepGhatakNZ 8     Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 3:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji32ManishSolanki55VishnuReddy199724NathanAlvares2444Anil_g22SudeepGhatakNZ40eetuRobo18Nived_Nambiar28Tjan8David_MA22   Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 4:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji11FLMike31Sayan11ManishSolanki16VishnuReddy199710creativeopinion14Akshansh-Sharma3SudeepGhatakNZ7claudiovc2CFernandes5 misc2Nived_Nambiar5 Usernametwice232rzaneti5 eetuRobo2   Anil_g2   SharonS2  

Check Out | 2024 Release Wave 2 Plans for Microsoft Dynamics 365 and Microsoft Power Platform

On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners.    The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights.    Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.    

Updates to Transitions in the Power Platform Communities

We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for.  We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer.   Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together.   Here's to new beginnings and endless possibilities!   If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport.   To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages

Users online (1,390)