cancel
Showing results for 
Search instead for 
Did you mean: 
Reply

delete empty folders in sharepoint document library

how to delete all empty folders in a sharepoint document library?

Thanks

1 ACCEPTED SOLUTION

Accepted Solutions
faustocapellanj
Memorable Member
Memorable Member

Hello @auyiucho 

As @ChristianAbata mentioned, you need to use the SharePoint HTTP request. This is how you would do it:

  1. For my example, I used a manual trigger.
  2. For the next action, add a Send an HTTP request to SharePoint, which in my example I renamed to GetFolders. Set your Site Address and for Method, use Get. In the Uri, enter the following: 
    _api/web/GetFolderByServerRelativeUrl('/sites/YourSiteName/YourDocumentLibraryName')/Folders. This will return all the folders inside the respective document library. For the Headers, set the Key to accept and its Value to application/json;odata=nometadata. Adding this to your Headers will reduce the amount of unnecessary data the HTTP request will send back.
    delete-1.png
  3. For the next action, add a Filter array. This will be used to retrieve the folders that have 0 ItemCount and to exclude an internal folder called Forms. In the * From field, enter the expression body('GetFolders')['Value']. which is the array returned in the from the HTTP request. Click on Edit in advanced mode and use the expression @and(equals(item()?['ItemCount'], 0), not(equals(item()['Name'], 'Forms'))).
    delete-2.png
  4. For the next action, add an Apply to each, which in my example I renamed to ForEach Folder. For the * Select an output from previous steps, select the Body from the Filter array action. Inside this action, add another Send an HTTP request to SharePoint, which in my example I also renamed to Delete Folders
  5. Set your Site Address and for Method, use Delete. In the Uri, enter the following: 
    _api/web/GetFolderByServerRelativeUrl('/sites/YourSiteName/YourDocumentLibraryName/ExpressionGoesHere'). For the ExpressionGoesHere part in the Uri, use the expression items('ForEach_Folder')['Name'].
    delete-3.png

Please try this approach and let us know.

Regards,

 

Fausto Capellan, Jr
Did I answer your question? Mark my post as a solution! Did my response help? Please give it a thumbs up!

View solution in original post

31 REPLIES 31
ChristianAbata
Most Valuable Professional
Most Valuable Professional

hi @auyiucho  the only way I can see you can do this is using HTTP sharepoint request

 

https://blogs.msmvps.com/windsor/2018/06/15/calling-the-sharepoint-rest-api-in-a-microsoft-flow/



Did I answer your question? Please consider to Mark
my post as a solution! to guide others :winking_face:

Proud to be a Flownaut!


If you want you can follow me:
Youtube: Christian Abata
Facebook: Power Automate LA
Power Automate examples: Power Automate examples
faustocapellanj
Memorable Member
Memorable Member

Hello @auyiucho 

As @ChristianAbata mentioned, you need to use the SharePoint HTTP request. This is how you would do it:

  1. For my example, I used a manual trigger.
  2. For the next action, add a Send an HTTP request to SharePoint, which in my example I renamed to GetFolders. Set your Site Address and for Method, use Get. In the Uri, enter the following: 
    _api/web/GetFolderByServerRelativeUrl('/sites/YourSiteName/YourDocumentLibraryName')/Folders. This will return all the folders inside the respective document library. For the Headers, set the Key to accept and its Value to application/json;odata=nometadata. Adding this to your Headers will reduce the amount of unnecessary data the HTTP request will send back.
    delete-1.png
  3. For the next action, add a Filter array. This will be used to retrieve the folders that have 0 ItemCount and to exclude an internal folder called Forms. In the * From field, enter the expression body('GetFolders')['Value']. which is the array returned in the from the HTTP request. Click on Edit in advanced mode and use the expression @and(equals(item()?['ItemCount'], 0), not(equals(item()['Name'], 'Forms'))).
    delete-2.png
  4. For the next action, add an Apply to each, which in my example I renamed to ForEach Folder. For the * Select an output from previous steps, select the Body from the Filter array action. Inside this action, add another Send an HTTP request to SharePoint, which in my example I also renamed to Delete Folders
  5. Set your Site Address and for Method, use Delete. In the Uri, enter the following: 
    _api/web/GetFolderByServerRelativeUrl('/sites/YourSiteName/YourDocumentLibraryName/ExpressionGoesHere'). For the ExpressionGoesHere part in the Uri, use the expression items('ForEach_Folder')['Name'].
    delete-3.png

Please try this approach and let us know.

Regards,

 

Fausto Capellan, Jr
Did I answer your question? Mark my post as a solution! Did my response help? Please give it a thumbs up!

Thanks faustocapellanj.

 

My document library as below

delete2.png

So, I enter the site/library as below

delete1.png

But it returns error: 400

"message""{\"odata.error\":{\"code\":\"-2147024809, System.ArgumentException\",\"message\":{\"lang\":\"en-US\",\"value\":\"Server relative urls must start with SPWeb.ServerRelativeUrl\"}}}\r\nclientRequestId: eb1a8ad5-0f36-4a9a-8a56-f0e9f635e75d\r\nserviceRequestId: af375a9f-f0dd-0000-537e-631771881cae",
 

Hi @auyiucho 

The parameter in the GetFolderByServerRelativeUrl action needs to match the URL of the site you are sending the HTTP request to. From what I see in your screenshot, your site is structured as /teams/admin, not as the example I posted before. Craft your folder Uri as follows: /teams/admin/InconSystemTemp and try again.

 

To clarify something, the reply posted by @fcapel1023 was done by me, @faustocapellanj , but didn't realize I had done it from an old account I never use, which was logged in in my phone. Anyways, apologies if this causes any confusion.

See my actual reply below: 
The parameter in the GetFolderByServerRelativeUrl action needs to match the URL of the site you are sending the HTTP request to. From what I see in your screenshot, your site is structured as /teams/admin, not as the example I posted before. Craft your folder Uri as follows: /teams/admin/InconSystemTemp and try again.

Regards,

Fausto Capellan, Jr
Did I answer your question? Mark my post as a solution! Did my response help? Please give it a thumbs up!

I double check the site name. it is "admin"

delete3.png

So, I type the Uri as below:

_api/web/GetFolderByServerRelativeUrl('/sites/admin/InconSystemTemp')/Folders

 

But the same error 400.

 

 

It has error details:

{"odata.error":{"code":"-2147024809, System.ArgumentException","message":{"lang":"en-US","value":"Server relative urls must start with SPWeb.ServerRelativeUrl"}}}
clientRequestId: 1d57bf9d-84ad-4ccb-8e9d-fe458217f1be
serviceRequestId: 703f5a9f-e0bd-0000-530b-eeaf785e43b9

Hi @auyiucho 

If you look at the Site Address you are using in your Send an HTTP request to SharePoint action, the site is as follows: https://inconhk.sharepoint.com/teams/admin, but in the Uri, you are using _api/web/GetFolderByServerRelativeUrl('/sites/Administration/InconSystemTemp')/Folders. The text highlighted in Red doesn't match the Url in the Site Address parameter.

Your Uri parameter must be _api/web/GetFolderByServerRelativeUrl('/teams/admin/InconSystemTemp')/Folders to match the Site Address. To be safe, open a browser window and enter this URL: 
https://inconhk.sharepoint.com/teams/admin/_api/web/GetFolderByServerRelativeUrl('/teams/admin/InconSystemTemp')/Folders and see what you get. 

Fausto Capellan, Jr
Did I answer your question? Mark my post as a solution! Did my response help? Please give it a thumbs up!

this time it shows error 404

delete4.png

Hi @auyiucho 

The screenshot below shows what your Send an HTTP request to SharePoint should look like, especially the * Uri parameter. Please try that and let me know.

delete-4.png

Fausto Capellan, Jr
Did I answer your question? Mark my post as a solution! Did my response help? Please give it a thumbs up!

@auyiucho  I see you are using get Method and the correct is delete, please change it and try

 

delete4.png



Did I answer your question? Please consider to Mark
my post as a solution! to guide others :winking_face:

Proud to be a Flownaut!


If you want you can follow me:
Youtube: Christian Abata
Facebook: Power Automate LA
Power Automate examples: Power Automate examples

Hello @ChristianAbata 

The one he seems to be having troubles with is the Get HTTP method, not the Delete since it's a different Uri.

Fausto Capellan, Jr
Did I answer your question? Mark my post as a solution! Did my response help? Please give it a thumbs up!

Thanks faustocapellanj.

I correct the Uri. It works.

But the Filter array cannot pass.

delete5.png

Hi @auyiucho 

I'm glad you got that part working. Now for the Filter array, remove the expression and set it back to Basic mode. On the left side, do the expression item()['ItemCount'], set the logical operator to is equals to and then set the value of the right to 0. Let me know if the filter array works.

Fausto Capellan, Jr
Did I answer your question? Mark my post as a solution! Did my response help? Please give it a thumbs up!

Thanks faustocapellanj so much.

 

It finally works.

 

You're welcome!
Fausto Capellan, Jr
Did I answer your question? Mark my post as a solution! Did my response help? Please give it a thumbs up!

Thank you for you detailed post. I was however wondering if this flow includes nested items as well? And if not, if it is possible to edit the flow in such a way that it does.   

 

Look forward to your response and thanks in advance!

Hi @J_diep 

That's an interesting question. There might be a way to do that, but I will have to try.

Fausto Capellan, Jr
Did I answer your question? Mark my post as a solution! Did my response help? Please give it a thumbs up!

Hello, I agree, it's a good question and I need help with it, too. We need a flow to periodically delete all empty + all empty subfolders(nested) in a SharePoint library ...

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,464)