cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
MichaelGSP
Helper I
Helper I

Copy all files from one Master folder to multiple other folders every week

Hi there,

 

I have a, let's call it, Master folder /xxx/Master

And in the same OfB I have multiple subfolders

/xxx/folder/FolderA 

/xxx/folder/FolderB

etc.

 

During the week, files get added, changed, deleted. Every Sunday morning at 4am I want all the files in the subfolders match exactly those in the Masterfolder.

 

My thought was, to delete all the files in the subfolders and copy the files from Master to the subs. But I got stuck.

 

Maybe there even is a better approach. 

 

Any help is appreciated. Thank you

 

Michael

18 REPLIES 18

Hi @MichaelGSP how far have you got with your Flow so far? If you use the Create File action and it has the same name as a file which exists, it will simply overwrite the existing file giving you a new version.

 

If you can post what you already have then I can help to guide you to what you want to do 🙂

 

Matt

Hi @MattWeston365, thank you for the response!

 

It isn't really a lot I can show to you. I somehow miss the logic behind the flows. The screenshot shows my latest try (I already deleted the other ones).

 

Bildschirmfoto 2019-04-23 um 15.19.27.png

(Datei erstellen = Create File; Inhalt = Content)

 

I tried different options:

1. Trigger via Time every week

2. Trigger via manual Button

3. and now this one: Trigger via created file (though this misses when a file is changed)

 

1. would be prefered. But with none of those solutions I could handle it, to get rid of deleted files. Plus, I didn't know, that existing files will just be overwritten. Thanks for that informartion!

 

And as I said, my try to "delete and copy" may not be the best. If there is a way to mirror the Master folder, or something completle else, would be great as well.

 

At the end I need:

 

1. at least once a week, everything that is in Master to be the same in the subfolders

 

2. and in the subfolders that are still to come. (I did not ask for this first, because I cannot image how this could work, but maybe there is a way to even include future subfolders, without changing the flow everytime; i.e. I could name all the subfolders the same xxx/FolderA/subfolder ; xxx/FolderB/subfolder etc. and search for "subfolder" to apply the flow to any folder with this name; not knowing if this is a silly thought)

Again, I am really happy if #1 works; #2 would just be a great add on!

 

Thanks for any help!

Hi @MichaelGSP give this Flow a go...

 

Step 1 - Get the data I need

 

  • TRIGGER - RECURRENCE: Start with a recurrence trigger so that you can define when your Flow is going to run. This can be configured to run on a per second, minute, day etc basis, so configure this as you see fit. In my example I've configured it to run each day at 0100. Always check the Advanced Options for this trigger as that will give you more control over some of the scheduling.
  • ACTION - ONEDRIVE Get Files: Get the files from my master folder so that I have got the list for later in my Flow.
  • ACTION - ONEDRIVE Get Files: This time I'm going to get the contents of the folder which contains my master and subfolders. Folders are also returned using this action, and I can do a simple condition later to ensure I'm working with the right objects. 

Step 1.PNG

 

Step 2 - Iterate through the folders in the parent

In this step I'm going to loop through all of the items that were found within the parent folder, and decide which ones I'm going to copy my content to. This is so I can add additional folders if I want to and I won't have to change my Flow (requirement 2 🙂)

  • CONTROL - APPLY TO EACH: For each item that was found in the "List files in PARENT folder" action, I want to loop through to process them.
  • CONTROL - CONDITION: As we loop through I want to check that the object returned is a Folder. For this I'm going to check if "Is Folder?" is true. I'm also going to ensure that I'm not going to copy into my MASTER folder by adding a second condition to ignore anything where the display name does not contain "master".

Step 2.PNG

 

Step 3 - Iterate through the contents of MASTER

If the condition from Step 2 is true then I'm going to iterate through and copy each item into the destination folder.

 

  • CONTROL - APPLY TO EACH: For each item which was found in the "List files in MASTER folder" action (right back at the start)
  • ACTION - ONE DRIVE Copy File (preview): For each file that we have found in Master, we're going to copy it our sub folder.
    • File: The ID of the file from "List files in MASTER folder"
    • Destination File Path: The PATH from "List files in PARENT folder", then add a forward slash to indicate the directory change, then the NAME from "List files in MASTER folder"
    • Overwrite - Yes

Step 3.PNG

The one additional config item that I've used for both loops is to turn on concurrency so that I can try to parallel process as much as possible. I've clicked on the ellipsis (...) on the loop and selected Settings. Concurrency control is off by default, so I've enabled it for both and left it at the default of 20.

 

Try that, if you have any issues please shout and I'll be happy to assist you further.

Hi @MichaelGSP ,

 

Do you want to copy files from master folder to subfolders?

 

Do these subfolders contain the same files? I mean all the files from the master folder will be just copied to different subfolders without any differences?

 

Please share more details on your scenario.

 

Best regards,

Mabel

 

Community Support Team _ Mabel Mao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.


@v-yamao-msft wrote:

Do you want to copy files from master folder to subfolders?

 

Do these subfolders contain the same files? I mean all the files from the master folder will be just copied to different subfolders without any differences?


Yes and Yes!

 

Goal: Every subfolder contains exact the same as master. Even if I delete something in Master, I want it deleted in the subfolders

 

Structure right:

 

.../folder/MASTER

.../folder/folderX/folderA/SUBFOLDER

.../folder/folderX/folderB/SUBFOLDER

.../folder/folderX/folderC/SUBFOLDER

..........

Hi @MichaelGSP I thought I'd replied to this last night, but for some reason my post isn't here. Ah well, I'll post again 🙂

 

Everything you want is possible, and here's how.

 

I've started with a recurrence trigger so that I can define when my Flow runs, e.g. it may run at 0100 each day. Feel free to change this to whatever schedule you want.

 

The next two actions are both "List files in folder" actions. The first one is going to get all of the files from my master folder, and will be used later on.

 

The second is going to get all files from the parent folder. The reason I'm doing this, is because Folders are returned with this action so I can loop through my folders and copy into each one I find. This will satisfy your requirement that if you add additional folders, this will still work without having to re-engineer your Flow.

 

Step 1.PNG

 

Once I have got my list of items in the parent folder, I'm going to iterate through and check to see if it's something I need to work with. For this, I'm going to use the "is folder" property to ensure that I'm only working with folders. The second is the name, so I'm filtering out any folders which have "Master" in the name.

Step 2.PNG

 

If it's a folder, and it's one of the subfolders that I want to copy into, then I can start the process of copying. Again I'm going to use a loop, this time looping through the list of files which I got from "List files in MASTER folder".

The destination path attribute in the copy action uses the "Path" dynamic content from "List files in parent folder", and Name from "list files in Master folder".

Step 3.PNG

So by doing this, you'll be able to copy all of the content from your master folder into any number of subfolders.

 

The only other configuratin I've done, is on the loops I've enabled concurrency so that I can have multiple threads running at the same time. I've done this on both loops as I can process multiple folders at the same time, and multiple files at the same time.

 

I hope that helps, please shout if you need anything else 🙂

 

Matt

@MattWeston365 

Thank you so much! It works perfectly with the subfolder put directly in the folder I pull the list from.

 

1. But, once there is another folder "in between" the conditions says "fales" and its not working.

What am I missing?

 

Bildschirmfoto 2019-04-24 um 12.28.11.png

 

Bildschirmfoto 2019-04-24 um 12.28.25.png

!!Instead of exluding "Master" I included "Subfolder"!!

!!Instead of pull the list from roor I pulled from the parent folder that is on the same level as Master put has serval subfolders in it!!

- The rest is, even though its in German, what you explained

 

 

This is the folder structure:

 

Bildschirmfoto 2019-04-24 um 12.41.54.png

 

Bildschirmfoto 2019-04-24 um 12.41.38.png

 

Bildschirmfoto 2019-04-24 um 12.41.26.png

 

2. And one more thing: It adds the master files to the subfolders, but if I delete something in the Master it stays in the subfolder.

Hi @MichaelGSP 

 

I've changed my folder structure to try to mimic yours, so it now looks like this:

Folders.PNG

I've made the change to my "List files in PARENT folder" action, by changing the parent folder to be Testsubfolder

 

Flow1.PNG

This will then copy the files from MASTER to Subfolder1 - 3 in my Testsubfolder directory.

 

 

I've added an additional step in to remove all files from these folders before the news ones are copied in, that will ensure you won't have any left behind from the previous run. It will use the "List files in subfolder" action with the folder being set to ID from "List files in PARENT folder".

 

I will then use the Delete file action for each file returned using the ID as the identifier.

 

DeleteFIles.PNG

1. Thanks again @MattWeston365  the delelte function works great! (when I say it works, I tested it in a flat structrue, not with the structrue mentioned below)

 

2. I am sorry if I was not clear enough with the folder structure and folder names. I hope this screenshot explains it better

 

 

Bildschirmfoto 2019-04-24 um 14.37.49.png

 

The master data should be copied to the green marked Subfolders. So the "Subfolders" are not in one place, but under different folders.

With "List data/folder Parent" I only get the first child level scanned, but I'd need to access the folders one level deeper.

 

Is there a solution for that?

Hope this makes sense!!!

Hi @MichaelGSP , are the subfolders named in green always the same name?


@MattWeston365 wrote:

Hi @MichaelGSP , are the subfolders named in green always the same name?


Not right now, but I can do that if it helps. Though if not necessary, that'd be great.

Hi @MichaelGSP naming your subfolders in the same way will get you to your goal much quicker, you just need to include the name of the subfolder in the copy file action.

 

Your Destination file path will be <path>/subfolder/<name>

 

To be honest if you want to keep going down the levels you could keep nesting loops for each level of subfolder, but now things are starting to get a little bit messy. I'm just going to test an alternative method for you which give you a much cleaner Flow, and you can then make a choice between the options.

Thank you so much so far!!! This was alread a great help @MattWeston365 

 

But now I figured out, with "List files" you only get a max of 20 files -.-

 

We have 100 and growing. Is there a way to get more files included?

Hi @MichaelGSP the pagination on the List Files in Folder OneDrive action defaults to 20, and for some reason seems to ignore me if I tell it to increase the pagination.

 

I'm sure I'll get told off for this 🙂 but I've changed my approach to use the SharePoint actions instead (OneDrive is a SharePoint site after all). I'm just running through the test at the moment and it seems to be working. I'll post the solution as soon as I'm on the train on my way home.

 

If you have found this post useful, please give it a thumbs up. If it has answered your question, please accept it as the solution so others can benefit.

@MattWeston365

Hi @MichaelGSP this has worked:

 

Change 1: Replace the List Files in Folder action for the MASTER folder with the SharePoint action: List Folder

Configure the Site to the be the URL to your OneDrive site and select your Master folder in the identifier:

 

 

Change 2: Replace the OneDrive copy files with the SharePoint copy file action. Configure the Current Site address and Destination site address to use your OneDrive url. THe file to Copy is the ID which is returned from the SharePoint List Folder action.

 

GetFiles.PNG

 

The only real complexity comes with the Destination Folder as we need to determine that from the List Files in Parent folder by using an expression:

split(items('Apply_to_each_item_in_PARENT_folder')?['Path'],':')[1]

 

Effectively I'm going to split the folder path which is returned from OneDrive as it contains additional information about the OneDrive site beyond the basic URL. Luckily the string is split by a colon : so I can cut the string in half and just take the second half of it to use.

 

CopyFiles.PNG

 

 

Thank you @MattWeston365 !

 

I am sorry for the late reply. I probably can't implement it before next week. But I surley let you know once I did!

@MattWeston365  after it took me way longer (as you see) than expecte, to come back to this problem, I tried to implement your latest support. But somehow I am not able to make it work proberly. 

 

So I decieded to use everything you helped me with so far and have every subfolder created seperately in the flow. Which is more hands on, but at least, it does, what it should do.

 

(only it shows me an error everyday: Flow not completed; but it is, so I leave it for now).

 

Once I can come back to this project, I'll give your latest post a try and let you know, once I made it work on my site.

 

Thank you so much for all the help in this!!!

No problems @MichaelGSP let me know when you want to revisit it. I sometimes find it easier to hold a Teams meeting so that we can screenshare and can then collaboratively work out the resolution. The option is there when you want it

Helpful resources

Announcements

Power Platform Connections Ep 15 | L. Baybutt | Thursday, 1 June 2023

Episode Fifteen of Power Platform Connections sees David Warner and Hugo Bernier talk to Microsoft MVP Lewis Baybutt aka Low Code Lewis, alongside the latest news and community blogs.   Use the hashtag #PowerPlatformConnects on social media for a chance to have your work featured on the show.        Action requested: Feel free to provide feedback on how we can make our community more inclusive and diverse.  This episode premiers live on our YouTube at 12pm PST on Thursday 1st June 2023.  Video series available at Power Platform Community YouTube channel.    Upcoming events:  European Power Platform conference – Jun. 20-22nd - Dublin Microsoft Power Platform Conference – Oct. 3-5th - Las Vegas  Join our Communities:  Power Apps Community Power Automate Community Power Virtual Agents Community Power Pages Community  If you’d like to hear from a specific community member in an upcoming recording and/or have specific questions for the Power Platform Connections team, please let us know. We will do our best to address all your requests or questions.  Action requested: Feel free to provide feedback on how we can make our community more inclusive and diverse.  This episode premiers live on our YouTube at 12pm PST on Thursday 1st June 2023.  Video series available at Power Platform Community YouTube channel.    Upcoming events:  European Power Platform conference – Jun. 20-22nd - Dublin Microsoft Power Platform Conference – Oct. 3-5th - Las Vegas  Join our Communities:  Power Apps Community Power Automate Community Power Virtual Agents Community Power Pages Community  If you’d like to hear from a specific community member in an upcoming recording and/or have specific questions for the Power Platform Connections team, please let us know. We will do our best to address all your requests or questions. 

May 2023 Community Newsletter and Upcoming Events

Welcome to our May 2023 Community Newsletter, where we'll be highlighting the latest news, releases, upcoming events, and the great work of our members inside the Biz Apps communities. If you're new to this LinkedIn group, be sure to subscribe here in the News & Announcements to stay up to date with the latest news from our ever-growing membership network who "changed the way they thought about code".         LATEST NEWS "Mondays at Microsoft" LIVE on LinkedIn - 8am PST - Monday 15th May  - Grab your Monday morning coffee and come join Principal Program Managers Heather Cook and Karuana Gatimu for the premiere episode of "Mondays at Microsoft"! This show will kick off the launch of the new Microsoft Community LinkedIn channel and cover a whole host of hot topics from across the #PowerPlatform, #ModernWork, #Dynamics365, #AI, and everything in-between. Just click the image below to register and come join the team LIVE on Monday 15th May 2023 at 8am PST. Hope to see you there!     Executive Keynote | Microsoft Customer Success Day CVP for Business Applications & Platform, Charles Lamanna, shares the latest #BusinessApplications product enhancements and updates to help customers achieve their business outcomes.         S01E13 Power Platform Connections - 12pm PST - Thursday 11th May Episode Thirteen of Power Platform Connections sees Hugo Bernier take a deep dive into the mind of co-host David Warner II, alongside the reviewing the great work of Dennis Goedegebuure, Keith Atherton, Michael Megel, Cat Schneider, and more. Click below to subscribe and get notified, with David and Hugo LIVE in the YouTube chat from 12pm PST. And use the hashtag #PowerPlatformConnects on social media for a chance to have your work featured on the show.         UPCOMING EVENTS   European Power Platform Conference - early bird ticket sale ends! The European Power Platform Conference early bird ticket sale ends on Friday 12th May 2023! #EPPC23 brings together the Microsoft Power Platform Communities for three days of unrivaled days in-person learning, connections and inspiration, featuring three inspirational keynotes, six expert full-day tutorials, and over eighty-five specialist sessions, with guest speakers including April Dunnam, Dona Sarkar, Ilya Fainberg, Janet Robb, Daniel Laskewitz, Rui Santos, Jens Christian Schrøder, Marco Rocca, and many more. Deep dive into the latest product advancements as you hear from some of the brightest minds in the #PowerApps space. Click here to book your ticket today and save!      DynamicMinds Conference - Slovenia - 22-24th May 2023 It's not long now until the DynamicsMinds Conference, which takes place in Slovenia on 22nd - 24th May, 2023 - where brilliant minds meet, mingle & share! This great Power Platform and Dynamics 365 Conference features a whole host of amazing speakers, including the likes of Georg Glantschnig, Dona Sarkar, Tommy Skaue, Monique Hayward, Aleksandar Totovic, Rachel Profitt, Aurélien CLERE, Ana Inés Urrutia de Souza, Luca Pellegrini, Bostjan Golob, Shannon Mullins, Elena Baeva, Ivan Ficko, Guro Faller, Vivian Voss, Andrew Bibby, Tricia Sinclair, Roger Gilchrist, Sara Lagerquist, Steve Mordue, and many more. Click here: DynamicsMinds Conference for more info on what is sure an amazing community conference covering all aspects of Power Platform and beyond.    Days of Knowledge Conference in Denmark - 1-2nd June 2023 Check out 'Days of Knowledge', a Directions 4 Partners conference on 1st-2nd June in Odense, Denmark, which focuses on educating employees, sharing knowledge and upgrading Business Central professionals. This fantastic two-day conference offers a combination of training sessions and workshops - all with Business Central and related products as the main topic. There's a great list of industry experts sharing their knowledge, including Iona V., Bert Verbeek, Liza Juhlin, Douglas Romão, Carolina Edvinsson, Kim Dalsgaard Christensen, Inga Sartauskaite, Peik Bech-Andersen, Shannon Mullins, James Crowter, Mona Borksted Nielsen, Renato Fajdiga, Vivian Voss, Sven Noomen, Paulien Buskens, Andri Már Helgason, Kayleen Hannigan, Freddy Kristiansen, Signe Agerbo, Luc van Vugt, and many more. If you want to meet industry experts, gain an advantage in the SMB-market, and acquire new knowledge about Microsoft Dynamics Business Central, click here Days of Knowledge Conference in Denmark to buy your ticket today!   COMMUNITY HIGHLIGHTS Check out our top Super and Community Users reaching new levels! These hardworking members are posting, answering questions, kudos, and providing top solutions in their communities.   Power Apps:  Super Users: @WarrenBelz, @LaurensM  @BCBuizer  Community Users:  @Amik@ @mmollet, @Cr1t    Power Automate:  Super Users: @Expiscornovus , @grantjenkins, @abm  Community Users: @Nived_Nambiar, @ManishSolanki    Power Virtual Agents:  Super Users: @Pstork1, @Expiscornovus  Community Users: @JoseA, @fernandosilva, @angerfire1213    Power Pages: Super Users: @ragavanrajan  Community Users: @Fubar, @Madhankumar_L,@gospa  LATEST COMMUNITY BLOG ARTICLES  Power Apps Community Blog  Power Automate Community Blog  Power Virtual Agents Community Blog  Power Pages Community Blog  Check out 'Using the Community' for more helpful tips and information:  Power Apps , Power Automate, Power Virtual Agents, Power Pages 

Announcing | Super Users - 2023 Season 1

Super Users – 2023 Season 1    We are excited to kick off the Power Users Super User Program for 2023 - Season 1.  The Power Platform Super Users have done an amazing job in keeping the Power Platform communities helpful, accurate and responsive. We would like to send these amazing folks a big THANK YOU for their efforts.      Super User Season 1 | Contributions July 1, 2022 – December 31, 2022  Super User Season 2 | Contributions January 1, 2023 – June 30, 2023    Curious what a Super User is? Super Users are especially active community members who are eager to help others with their community questions. There are 2 Super User seasons in a year, and we monitor the community for new potential Super Users at the end of each season. Super Users are recognized in the community with both a rank name and icon next to their username, and a seasonal badge on their profile.  Power Apps  Power Automate  Power Virtual Agents  Power Pages  Pstork1*  Pstork1*  Pstork1*  OliverRodrigues  BCBuizer  Expiscornovus*  Expiscornovus*  ragavanrajan  AhmedSalih  grantjenkins  renatoromao    Mira_Ghaly*  Mira_Ghaly*      Sundeep_Malik*  Sundeep_Malik*      SudeepGhatakNZ*  SudeepGhatakNZ*      StretchFredrik*  StretchFredrik*      365-Assist*  365-Assist*      cha_cha  ekarim2020      timl  Hardesh15      iAm_ManCat  annajhaveri      SebS  Rhiassuring      LaurensM  abm      TheRobRush  Ankesh_49      WiZey  lbendlin      Nogueira1306  Kaif_Siddique      victorcp  RobElliott      dpoggemann  srduval      SBax  CFernandes      Roverandom  schwibach      Akser  CraigStewart      PowerRanger  MichaelAnnis      subsguts  David_MA      EricRegnier  edgonzales      zmansuri  GeorgiosG      ChrisPiasecki  ryule      AmDev  fchopo      phipps0218  tom_riha      theapurva  takolota     Akash17  momlo     BCLS776  Shuvam-rpa     rampprakash  ScottShearer     Rusk  ChristianAbata     cchannon  Koen5     a33ik  Heartholme     AaronKnox  okeks      Matren  David_MA     Alex_10        Jeff_Thorpe        poweractivate        Ramole        DianaBirkelbach        DavidZoon        AJ_Z        PriyankaGeethik        BrianS        StalinPonnusamy        HamidBee        CNT        Anonymous_Hippo        Anchov        KeithAtherton        alaabitar        Tolu_Victor        KRider        sperry1625        IPC_ahaas      zuurg    rubin_boer   cwebb365   Dorrinda   G1124   Gabibalaban   Manan-Malhotra   jcfDaniel   WarrenBelz   Waegemma   drrickryp   GuidoPreite   metsshan    If an * is at the end of a user's name this means they are a Multi Super User, in more than one community. Please note this is not the final list, as we are pending a few acceptances.  Once they are received the list will be updated. 

Check out the new Power Platform Communities Front Door Experience!

We are excited to share the ‘Power Platform Communities Front Door’ experience with you!   Front Door brings together content from all the Power Platform communities into a single place for our community members, customers and low-code, no-code enthusiasts to learn, share and engage with peers, advocates, community program managers and our product team members. There are a host of features and new capabilities now available on Power Platform Communities Front Door to make content more discoverable for all power product community users which includes ForumsUser GroupsEventsCommunity highlightsCommunity by numbersLinks to all communities Users can see top discussions from across all the Power Platform communities and easily navigate to the latest or trending posts for further interaction. Additionally, they can filter to individual products as well.   Users can filter and browse the user group events from all power platform products with feature parity to existing community user group experience and added filtering capabilities.     Users can now explore user groups on the Power Platform Front Door landing page with capability to view all products in Power Platform.      Explore Power Platform Communities Front Door today. Visit Power Platform Community Front door to easily navigate to the different product communities, view a roll up of user groups, events and forums.

Microsoft Power Platform Conference | Registration Open | Oct. 3-5 2023

We are so excited to see you for the Microsoft Power Platform Conference in Las Vegas October 3-5 2023! But first, let's take a look back at some fun moments and the best community in tech from MPPC 2022 in Orlando, Florida.   Featuring guest speakers such as Charles Lamanna, Heather Cook, Julie Strauss, Nirav Shah, Ryan Cunningham, Sangya Singh, Stephen Siciliano, Hugo Bernier and many more.   Register today: https://www.powerplatformconf.com/   

Users online (4,967)