<?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 dbfs directory listing has changed in Databricks Free Edition Help</title>
    <link>https://community.databricks.com/t5/databricks-free-edition-help/dbfs-directory-listing-has-changed/m-p/146548#M628</link>
    <description>&lt;P&gt;Today with&lt;/P&gt;&lt;P&gt;databricks -p FREE fs ls dbfs: -l&lt;/P&gt;&lt;P&gt;i get&lt;/P&gt;&lt;P&gt;DIRECTORY 0 1970-01-01T01:00:00Z Volumes&lt;BR /&gt;DIRECTORY 0 1970-01-01T01:00:00Z Workspace&lt;BR /&gt;DIRECTORY 0 1970-01-01T01:00:00Z databricks-datasets&lt;/P&gt;&lt;P&gt;But until recently i got significantly more output includeing something like&lt;/P&gt;&lt;P&gt;disableddbfs // or the like&lt;/P&gt;&lt;P&gt;Is this a change in my side or on server (Databricks) side?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 02 Feb 2026 13:10:02 GMT</pubDate>
    <dc:creator>fehrin1</dc:creator>
    <dc:date>2026-02-02T13:10:02Z</dc:date>
    <item>
      <title>dbfs directory listing has changed</title>
      <link>https://community.databricks.com/t5/databricks-free-edition-help/dbfs-directory-listing-has-changed/m-p/146548#M628</link>
      <description>&lt;P&gt;Today with&lt;/P&gt;&lt;P&gt;databricks -p FREE fs ls dbfs: -l&lt;/P&gt;&lt;P&gt;i get&lt;/P&gt;&lt;P&gt;DIRECTORY 0 1970-01-01T01:00:00Z Volumes&lt;BR /&gt;DIRECTORY 0 1970-01-01T01:00:00Z Workspace&lt;BR /&gt;DIRECTORY 0 1970-01-01T01:00:00Z databricks-datasets&lt;/P&gt;&lt;P&gt;But until recently i got significantly more output includeing something like&lt;/P&gt;&lt;P&gt;disableddbfs // or the like&lt;/P&gt;&lt;P&gt;Is this a change in my side or on server (Databricks) side?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Feb 2026 13:10:02 GMT</pubDate>
      <guid>https://community.databricks.com/t5/databricks-free-edition-help/dbfs-directory-listing-has-changed/m-p/146548#M628</guid>
      <dc:creator>fehrin1</dc:creator>
      <dc:date>2026-02-02T13:10:02Z</dc:date>
    </item>
    <item>
      <title>Re: dbfs directory listing has changed</title>
      <link>https://community.databricks.com/t5/databricks-free-edition-help/dbfs-directory-listing-has-changed/m-p/146581#M645</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/211979"&gt;@fehrin1&lt;/a&gt;&amp;nbsp;, I did some digging and here is what I found.&lt;/P&gt;
&lt;P class="p1"&gt;Short answer: this is almost certainly a server-side/workspace change, not your local CLI. Your workspace now has DBFS root (and mounts) disabled, which is why the CLI only shows the reserved namespaces: Volumes, Workspace, and databricks-datasets. When DBFS root is turned off, those paths remain visible by design, and anything else under the old DBFS root will fail — often with an error along the lines of “Public DBFS root is disabled.”&lt;/P&gt;
&lt;P class="p1"&gt;What changed and why&lt;/P&gt;
&lt;P class="p1"&gt;Databricks is actively deprecating DBFS root and DBFS mounts and phasing them out. Newer workspaces are provisioned without them by default, and existing ones may have them disabled as part of that rollout. In a workspace where DBFS is disabled, you can still access a few well-defined locations:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;
&lt;P class="p1"&gt;dbfs:/Volumes/ for Unity Catalog Volumes (fully governed by UC)&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P class="p1"&gt;dbfs:/databricks-datasets/ for read-only sample data&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P class="p1"&gt;Workspace files via file:/Workspace, and in supported runtimes also via dbfs:/Workspace with dbutils&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P class="p1"&gt;The newer Databricks CLI fs group (v0.205+) is aligned with this model. It expects paths like dbfs:/Volumes/… or dbfs:/…, and it won’t magically resurrect DBFS root if the workspace has disabled it.&lt;/P&gt;
&lt;P class="p1"&gt;How to confirm it’s server-side&lt;/P&gt;
&lt;P class="p1"&gt;A quick sanity check is to try creating a directory under the old DBFS root, for example:&lt;/P&gt;
&lt;P class="p1"&gt;databricks fs mkdir dbfs:/tmp/test&lt;/P&gt;
&lt;P class="p1"&gt;If DBFS is disabled, you’ll get a clear failure indicating the DBFS root is disabled. That’s your confirmation this is a workspace policy, not a local CLI issue. You can also check your CLI version with databricks -v — upgrades may tweak output or defaults, but they don’t remove root directories on their own.&lt;/P&gt;
&lt;P class="p1"&gt;What to use instead&lt;/P&gt;
&lt;P class="p1"&gt;For file storage, the recommended path forward is Unity Catalog Volumes. You can list and manage them cleanly with commands like:&lt;/P&gt;
&lt;P class="p1"&gt;databricks fs ls dbfs:/Volumes////…&lt;/P&gt;
&lt;P class="p1"&gt;For small dev or test artifacts, Workspace files are still a good fit and can be accessed via file:/Workspace/… (and, in supported runtimes, via dbfs:/Workspace for dbutils.fs).&lt;/P&gt;
&lt;P class="p1"&gt;One important gotcha: avoid using direct cloud URIs from the CLI. That’s not supported. If you’re using the CLI or dbutils, stick to Volumes or Workspace files.&lt;/P&gt;
&lt;P class="p1"&gt;A note on the “disableddbfs” paths you might remember&lt;/P&gt;
&lt;P class="p1"&gt;During earlier DBFS disablement rollouts, some environments exposed marker directories or partial DBFS views. Today, the behavior is simpler and stricter: when DBFS root is disabled, you only see the reserved namespaces. Older folders like FileStore, tmp, or any disablement markers simply won’t appear anymore.&lt;/P&gt;
&lt;P class="p1"&gt;Cheers, Louis&lt;/P&gt;</description>
      <pubDate>Mon, 02 Feb 2026 15:18:37 GMT</pubDate>
      <guid>https://community.databricks.com/t5/databricks-free-edition-help/dbfs-directory-listing-has-changed/m-p/146581#M645</guid>
      <dc:creator>Louis_Frolio</dc:creator>
      <dc:date>2026-02-02T15:18:37Z</dc:date>
    </item>
    <item>
      <title>Re: dbfs directory listing has changed</title>
      <link>https://community.databricks.com/t5/databricks-free-edition-help/dbfs-directory-listing-has-changed/m-p/146588#M646</link>
      <description>&lt;P&gt;While i got a perfectly sound answer, i want to mention that i probably confused the outputs of databricks fs ls (remote) and df (local).&lt;/P&gt;</description>
      <pubDate>Mon, 02 Feb 2026 15:57:53 GMT</pubDate>
      <guid>https://community.databricks.com/t5/databricks-free-edition-help/dbfs-directory-listing-has-changed/m-p/146588#M646</guid>
      <dc:creator>fehrin1</dc:creator>
      <dc:date>2026-02-02T15:57:53Z</dc:date>
    </item>
  </channel>
</rss>

