Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
mumbaicharaja
Regular Visitor

How to process files from onedrive subfolders recursively

I want to know how to recursively process files in subfolders of onedrive. This is needed for consolidating the data from all the excel files in given folder and all subfolders underneath.. I already have PowerQuery written to go to a specific folder and process all the files in that. However, it needs to happen recursively for all the sub-folders and sub-sub-folder in that. Any guidance please?

5 REPLIES 5
Anonymous
Not applicable

it is just a guess, but try if this is a good starting point:

 

 

let

   dirall=(path)=>
   let 
    Source = Folder.Contents(path), 
    dir=List.Accumulate(Table.ToRows(Source[[Content],[Name]]),{},(s,c)=>if Value.Is(c{0}, type table) then s&@dirall(path &"\"& c{1})  else s&{c{1}} )
    in dir

in
    dirall

 

 

this function recursively goes through all the folders and subfolders of a directory and supplies only the name of the files.
but only you know what else to do with these files

Anonymous
Not applicable

here a version that add some action to the files.

 

let

   dirall=(path)=>
   let 
    Source = Folder.Contents(path), 
    dir=List.Accumulate(Table.ToRows(Source[[Content],[Name]]),{},(s,c)=>if Value.Is(c{0}, type table) then s&@dirall(path &"\"& c{1})  else s&{[name=c{1},len=Text.Length(Text.BeforeDelimiter(c{1},".")) ]} )
    in dir

in
    dirall

 

 

image.png

for each files name the last number is the number file in the subfolder.

 

f212 for example is the second file in the filder f21 which is the first subfolder of folder  f2 wich is the second subfolder of folder "test"

 

 

image.png

 

 

image.png

 

 

 

image.png

Anonymous
Not applicable

may be this could be more usefull to your goal

 

 

 

 

let

   dirall=(path)=>
   let 
    Source = Folder.Contents(path), 
    dir=List.Accumulate(Table.ToRows(Source[[Content],[Name]]),{},(s,c)=>if Value.Is(c{0}, type table) then s&@dirall(path &"\"& c{1})  else s&{path & "\"& c{1}} )
    in  
dir
in
    dirall

 

 

 

 

image.png

having all the files with complete path you can apply your function (I suppose)

 

#####

in the following form it is probably easier to understand

 

 

 

 

let
  dirall = (path) => List.Accumulate(
      Table.ToRecords(Folder.Contents(path)), 
      {}, 
      (s, c) => 
        if Value.Is(c[Content], type table) then 
          s & @dirall(path & "\" & c[Name])
        else 
          s & {path & "\" & c[Name]}
    )
in
  dirall

 

 

edhans
Super User
Super User

Do this using the SharePoint connector @mumbaicharaja 

  1. Go to OneDrive in your browser. You will get a URL that looks like this:
    1. https://tenantname-my.sharepoint.com/personal/username_tenantname_com/_layouts/15/onedrive.aspx
  2. You want to use this part - https://tenantname-my.sharepoint.com/personal/username_tenantname_com
  3. Sign in
  4. Click Transform Data
  5. Go to the folder path column
  6. Filter for the folder you want. You want to use "Contains" so it will get that folder and all folders with that info below it.
  7. Filter by file type is needed. A good idea just in case other files creep in there.
  8. Press the Combine button and follow the wizard 
     
     
     

    2020-08-14 11_22_56-Query1 - Power Query Editor.png



Did I answer your question? Mark my post as a solution!
Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

DAX is for Analysis. Power Query is for Data Modeling


Proud to be a Super User!

MCSA: BI Reporting
amitchandak
Super User
Super User

@mumbaicharaja , refer if these can help

https://powerbi.microsoft.com/en-us/blog/combining-excel-files-hosted-on-a-sharepoint-folder/

https://medium.com/@wkrzywiec/getting-data-from-the-latest-file-in-a-folder-using-power-query-51dfa4...

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.