<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Download files from Fabric lakehouse to local computer in Data Engineering</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Download-files-from-Fabric-lakehouse-to-local-computer/m-p/4050106#M3145</link>
    <description>&lt;P&gt;Have you tried the OneLake app? It works much like OneDrive.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.microsoft.com/en-us/download/details.aspx?id=105222" target="_blank"&gt;Download Microsoft OneLake file explorer for Windows from Official Microsoft Download Center&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 19 Jul 2024 07:38:55 GMT</pubDate>
    <dc:creator>abm_chris</dc:creator>
    <dc:date>2024-07-19T07:38:55Z</dc:date>
    <item>
      <title>Download files from Fabric lakehouse to local computer</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Download-files-from-Fabric-lakehouse-to-local-computer/m-p/4050005#M3143</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please suggest code to download files from Fabric lakehouse to my local computer. I want to run this code in my fabric notebook.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jul 2024 07:04:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Download-files-from-Fabric-lakehouse-to-local-computer/m-p/4050005#M3143</guid>
      <dc:creator>SriThiru</dc:creator>
      <dc:date>2024-07-19T07:04:12Z</dc:date>
    </item>
    <item>
      <title>Re: Download files from Fabric lakehouse to local computer</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Download-files-from-Fabric-lakehouse-to-local-computer/m-p/4050106#M3145</link>
      <description>&lt;P&gt;Have you tried the OneLake app? It works much like OneDrive.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.microsoft.com/en-us/download/details.aspx?id=105222" target="_blank"&gt;Download Microsoft OneLake file explorer for Windows from Official Microsoft Download Center&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jul 2024 07:38:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Download-files-from-Fabric-lakehouse-to-local-computer/m-p/4050106#M3145</guid>
      <dc:creator>abm_chris</dc:creator>
      <dc:date>2024-07-19T07:38:55Z</dc:date>
    </item>
    <item>
      <title>Re: Download files from Fabric lakehouse to local computer</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Download-files-from-Fabric-lakehouse-to-local-computer/m-p/4055733#M3210</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/606434"&gt;@abm_chris&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;Yes I tried the app.&lt;BR /&gt;But I want to do this programatically, can you please suggest the code.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2024 07:37:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Download-files-from-Fabric-lakehouse-to-local-computer/m-p/4055733#M3210</guid>
      <dc:creator>SriThiru</dc:creator>
      <dc:date>2024-07-23T07:37:16Z</dc:date>
    </item>
    <item>
      <title>Re: Download files from Fabric lakehouse to local computer</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Download-files-from-Fabric-lakehouse-to-local-computer/m-p/4066503#M3324</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/333087"&gt;@SriThiru&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;May I ask if your problem has been solved. If not you may consider&amp;nbsp;&lt;SPAN&gt;using Python in your Fabric notebook like below:&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;import requests

file_url = 'https://fabric-lakehouse-url/path/to/your/file'

local_path = 'path/to/save/file'

response = requests.get(file_url)

with open(local_path, 'wb') as file:
    file.write(response.content)

print(f'File downloaded and saved to {local_path}')
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Ada Wang&lt;/P&gt;
&lt;P&gt;If this post&amp;nbsp;&lt;EM&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;/EM&gt;, then please consider&lt;EM&gt;&lt;STRONG&gt;&amp;nbsp;Accept it as the solution&amp;nbsp;&lt;/STRONG&gt;&lt;/EM&gt;to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2024 07:59:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Download-files-from-Fabric-lakehouse-to-local-computer/m-p/4066503#M3324</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-07-29T07:59:57Z</dc:date>
    </item>
    <item>
      <title>Re: Download files from Fabric lakehouse to local computer</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Download-files-from-Fabric-lakehouse-to-local-computer/m-p/4771497#M11130</link>
      <description>&lt;P&gt;The OneLake app is blocked in my environment (and no-one has been able to discover why); I was hoping there'd be an API call instead.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jul 2025 01:43:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Download-files-from-Fabric-lakehouse-to-local-computer/m-p/4771497#M11130</guid>
      <dc:creator>JHLG</dc:creator>
      <dc:date>2025-07-22T01:43:34Z</dc:date>
    </item>
    <item>
      <title>Re: Download files from Fabric lakehouse to local computer</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Download-files-from-Fabric-lakehouse-to-local-computer/m-p/4772858#M11160</link>
      <description>&lt;P&gt;I used to use that APP, but after i had to rebuild my laptop and a reinstall of the APP, you can no longer see your lakehouse, and its files pretty unhappy with that because as a dev it was a handy tool to have&lt;span class="lia-unicode-emoji" title=":thumbs_down:"&gt;👎&lt;/span&gt; , already tried reinstalling the app again but no dice&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jul 2025 23:22:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Download-files-from-Fabric-lakehouse-to-local-computer/m-p/4772858#M11160</guid>
      <dc:creator>smeetsh</dc:creator>
      <dc:date>2025-07-22T23:22:34Z</dc:date>
    </item>
    <item>
      <title>Re: Download files from Fabric lakehouse to local computer</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Download-files-from-Fabric-lakehouse-to-local-computer/m-p/4773679#M11178</link>
      <description>&lt;P&gt;Have you tried right-clicking the OneLake folder in Windows Explorer and then "sync from OneLake" or something similar. That usually does it for me.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jul 2025 12:24:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Download-files-from-Fabric-lakehouse-to-local-computer/m-p/4773679#M11178</guid>
      <dc:creator>frithjof_v</dc:creator>
      <dc:date>2025-07-23T12:24:43Z</dc:date>
    </item>
    <item>
      <title>Re: Download files from Fabric lakehouse to local computer</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Download-files-from-Fabric-lakehouse-to-local-computer/m-p/4774189#M11184</link>
      <description>&lt;P&gt;it seems to have woken up overnight&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":beaming_face_with_smiling_eyes:"&gt;😁&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jul 2025 20:30:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Download-files-from-Fabric-lakehouse-to-local-computer/m-p/4774189#M11184</guid>
      <dc:creator>smeetsh</dc:creator>
      <dc:date>2025-07-23T20:30:27Z</dc:date>
    </item>
    <item>
      <title>Re: Download files from Fabric lakehouse to local computer</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Download-files-from-Fabric-lakehouse-to-local-computer/m-p/4779105#M11320</link>
      <description>&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/333087"&gt;@SriThiru&lt;/a&gt;Let's break down your request into parts.&lt;BR /&gt;1.&lt;STRONG&gt;&amp;nbsp;D&lt;/STRONG&gt;&lt;SPAN&gt;&lt;STRONG&gt;ownload files from Fabric lakehouse to my local computer.&lt;/STRONG&gt;&lt;BR /&gt;&lt;/SPAN&gt;Conceptually speaking, Fabric Lakehouse file storage is very similar to Azure ADLS storage and is available via similar API. So, to download a file from a Fabric Lakehouse is the same as download a file from another Azure ADLS storage account using an API. However, although the file storage in Fabric is provided via a Lakehouse explorer, the Lakehouse API cannot be used to access files. Instead, you sould be using OneLake API as described here&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/fabric/onelake/onelake-access-api" target="_blank"&gt;How do I connect to OneLake? - Microsoft Fabric | Microsoft Learn&lt;/A&gt;.&amp;nbsp;You can find a lot of code examples of working with OneLake files via API in different languages. If you prefer Python, this is a Microsoft provided documentation&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/fabric/onelake/onelake-access-python" target="_blank"&gt;Access OneLake with Python - Microsoft Fabric | Microsoft Learn&lt;/A&gt;.&lt;BR /&gt;2. &lt;STRONG&gt;R&lt;/STRONG&gt;&lt;SPAN&gt;&lt;STRONG&gt;un this code in my Fabric notebook.&lt;/STRONG&gt;&lt;BR /&gt;This is not a correctly phrased request in the context of the #1 because the code that downloads a file should be executed on a remote computer that downloads a file form Fabric. Such code cannot be executed in Fabric because Fabric cannot have access to your remote computer to save the file there. Your code runs on a remote computer and executes a pull operation from Fabric as opposed to when Fabric pushes a file somewhere (which generally can be done, just not in the way you described).&lt;BR /&gt;Hope, this explanation helps clarify your situation.&lt;BR /&gt;&lt;BR /&gt;As for the code, you don't necessarily need to write a code to download a file. The easiest way is to install a OneLake explorer for Windows&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/fabric/onelake/onelake-file-explorer" target="_blank"&gt;Access Fabric data locally with OneLake file explorer - Microsoft Fabric | Microsoft Learn&lt;/A&gt;. Because Fabric API communicates via HTTP you could even use a utility like curl, to download a file from Fabric Lakehouse.&lt;BR /&gt;&lt;BR /&gt;Another alternative to dowload a file is to use Fabric CLI. You can find an example here&amp;nbsp;&lt;A href="https://microsoft.github.io/fabric-cli/examples/onelake_examples.html#downloading-files" target="_blank"&gt;Onelake examples | fabric-cli&lt;/A&gt;.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jul 2025 19:34:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Download-files-from-Fabric-lakehouse-to-local-computer/m-p/4779105#M11320</guid>
      <dc:creator>apturlov</dc:creator>
      <dc:date>2025-07-28T19:34:14Z</dc:date>
    </item>
  </channel>
</rss>

