<?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 Is it possible to get the path of a notebook in a fabric folder in Data Engineering</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Is-it-possible-to-get-the-path-of-a-notebook-in-a-fabric-folder/m-p/4233314#M4490</link>
    <description>&lt;P&gt;Using&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;SPAN&gt;notebookutils.notebook.get or&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;notebookutils.notebook.list or&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;f"/v1/workspaces/{WORKSPACE_ID}/items/{ARTIFACT_ID}/GetDefinition or&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;f"/v1/workspaces/{WORKSPACE_ID}/items/&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;i get the names of the notebooks but i want to use the paths of the notebooks for notebook orchastration using DAG.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;How can i get the path of the fabric notebook?&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Tue, 08 Oct 2024 09:25:49 GMT</pubDate>
    <dc:creator>tacovanasselt</dc:creator>
    <dc:date>2024-10-08T09:25:49Z</dc:date>
    <item>
      <title>Is it possible to get the path of a notebook in a fabric folder</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Is-it-possible-to-get-the-path-of-a-notebook-in-a-fabric-folder/m-p/4233314#M4490</link>
      <description>&lt;P&gt;Using&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;SPAN&gt;notebookutils.notebook.get or&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;notebookutils.notebook.list or&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;f"/v1/workspaces/{WORKSPACE_ID}/items/{ARTIFACT_ID}/GetDefinition or&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;f"/v1/workspaces/{WORKSPACE_ID}/items/&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;i get the names of the notebooks but i want to use the paths of the notebooks for notebook orchastration using DAG.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;How can i get the path of the fabric notebook?&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 08 Oct 2024 09:25:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Is-it-possible-to-get-the-path-of-a-notebook-in-a-fabric-folder/m-p/4233314#M4490</guid>
      <dc:creator>tacovanasselt</dc:creator>
      <dc:date>2024-10-08T09:25:49Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to get the path of a notebook in a fabric folder</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Is-it-possible-to-get-the-path-of-a-notebook-in-a-fabric-folder/m-p/4234604#M4507</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/821837"&gt;@tacovanasselt&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;It seems that there is currently no direct API or command to provide the notebook path. If you want a path that includes the workspace ID and notebook ID, you can obtain these IDs and then concatenate them with the base path. For example,&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;all_notebooks = notebookutils.notebook.list("your workspace id")

for nb in all_notebooks:
    workspace_id = nb['workspaceId']
    notebook_id = nb['id']
    # notebook_name = nb['displayName']
    notebook_path = f"/v1/workspaces/{workspace_id}/items/{notebook_id}"
    print(notebook_path)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to use&amp;nbsp;&lt;SPAN&gt;DAG, according to &lt;A href="https://learn.microsoft.com/en-us/fabric/data-engineering/notebook-utilities#:~:text=Use%20this%20method%20to%20easily%20orchestrate%20notebooks%20through%20a%20code%20experience." target="_blank" rel="noopener"&gt;the documentation&lt;/A&gt;, the notebook path it requires is just the notebook name. You're already able to get the names of the notebooks.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Hope this would be helpful.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Best Regards,&lt;BR /&gt;Jing&lt;BR /&gt;&lt;EM&gt;If this post helps, please Accept it as Solution to help other members find it. Appreciate your Kudos! &lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Oct 2024 05:52:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Is-it-possible-to-get-the-path-of-a-notebook-in-a-fabric-folder/m-p/4234604#M4507</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-10-09T05:52:31Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to get the path of a notebook in a fabric folder</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Is-it-possible-to-get-the-path-of-a-notebook-in-a-fabric-folder/m-p/4317608#M5526</link>
      <description>&lt;P&gt;Don't think this is what the orig poster is looking for.&amp;nbsp; They are looking to get the folder path of a workspace.&amp;nbsp; shown as location in the about page of the notebook.&amp;nbsp; We are looking to get this as well so we can use notebook folder placement to drive schedule orchestration&lt;/P&gt;</description>
      <pubDate>Fri, 06 Dec 2024 21:40:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Is-it-possible-to-get-the-path-of-a-notebook-in-a-fabric-folder/m-p/4317608#M5526</guid>
      <dc:creator>zarb</dc:creator>
      <dc:date>2024-12-06T21:40:16Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to get the path of a notebook in a fabric folder</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Is-it-possible-to-get-the-path-of-a-notebook-in-a-fabric-folder/m-p/4806107#M11910</link>
      <description>&lt;P&gt;Check out recent blog :&amp;nbsp;&lt;A href="https://medium.com/uselessai-in/default-path-in-microsoft-fabric-for-pandas-87bcce857891" target="_blank"&gt;https://medium.com/uselessai-in/default-path-in-microsoft-fabric-for-pandas-87bcce857891&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Aug 2025 03:29:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Is-it-possible-to-get-the-path-of-a-notebook-in-a-fabric-folder/m-p/4806107#M11910</guid>
      <dc:creator>uselessai_in</dc:creator>
      <dc:date>2025-08-25T03:29:35Z</dc:date>
    </item>
  </channel>
</rss>

