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
jaryszek
Post Prodigy
Post Prodigy

GitHub connector to get all csvs in folder and subfolder

Hi Guys,

i am using this connector to get data from github folder: 

shared GitHub.Contents = (relativePath as text, optional folderPath as text) =>
    let
        baseUrl = "https://api.github.com/repos/Vnomic/",
        url = baseUrl & relativePath & "/contents/" & folderPath,
        source = Json.Document(Web.Contents(url, [
            Headers = [
                #"Authorization" = "Bearer " & Extension.CurrentCredential()[access_token],
                #"User-Agent" = "PowerQuery"
            ]
        ]))
    in
        source;

It is possible to get 1 parent folder and all csvs tables inside subfolders while connecting to github ?

Best,
Jacek

1 ACCEPTED SOLUTION
v-pagayam-msft
Community Support
Community Support

Hi @jaryszek ,
Thank you for reaching out to us on Microsoft Fabric Community Forum!

It is not directly possible to pull all CSVs from a parent folder and all its subfolders in one go using the GitHub.Contents connector. If your folder structure is simple, you could work around this by calling each subfolder separately. 

Hope this helps.If so,consider accepting it as solution.

 

View solution in original post

1 REPLY 1
v-pagayam-msft
Community Support
Community Support

Hi @jaryszek ,
Thank you for reaching out to us on Microsoft Fabric Community Forum!

It is not directly possible to pull all CSVs from a parent folder and all its subfolders in one go using the GitHub.Contents connector. If your folder structure is simple, you could work around this by calling each subfolder separately. 

Hope this helps.If so,consider accepting it as solution.

 

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.