Forum Discussion
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
- edhans
Community Champion
Do this using the SharePoint connector mumbaicharaja
- Go to OneDrive in your browser. You will get a URL that looks like this:
- You want to use this part - https://tenantname-my.sharepoint.com/personal/username_tenantname_com
- Sign in
- Click Transform Data
- Go to the folder path column
- 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.
- Filter by file type is needed. A good idea just in case other files creep in there.
- Press the Combine button and follow the wizard
- AnonymousNot 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 dirallthis 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- AnonymousNot 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 dirallfor 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"
- AnonymousNot 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 dirallhaving 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