โ06-14-2025 10:30 AM
Hi Team,
I am using Databricks free edition to run some jobs on environment but I am getting error like : Public DBFS root is disabled. Access is denied on path: /FileStore/tables/
So how can i get access for this location, could anyone help me here.
โ06-14-2025 06:41 PM
Hi @ViratKumar1061, I am not very familiar with the features provided in the Databricks free edition. But you can check settings -> Advanced -> DBFS File Browser
There will be a toggle to enable DBFS File Browser, check if it is disabled.
โ06-21-2025 12:07 PM
Hi Nikhil,
I already checked in setting and there is no any toggle option to enable DBFS File broweser in databricks free edition, please help us on this we are stuck on this.
โ06-21-2025 11:03 AM
Hi Nikhil,
I already checked in setting and there is no any toggle option to enable DBFS File broweser in databricks free edition, please help us on this we are stuck on this.
โ06-22-2025 08:46 AM
Hi Virat, after the new Databricks update DBFS is deprecated when the community edition was changed to Free Edition few days, you can use Volume instead of filestore, try using this command for more understanding
%fs ls dbfs:/Volumes/workspace/default/
you can create a folder or external storage
%fs mkdirs /Volumes/workspace/default/<folder_name>/
and use this path for your operations
โ06-24-2025 10:22 PM
Hi vidhey, i tried this thing "%fs ls dbfs:/Volumes/" it shows
"The maximum number of retries has been exceeded"
error
โ06-27-2025 08:42 PM
Try this after sometime, hopefully it should work
โ07-07-2025 07:23 AM
after sometime I have tried "%fs ls dbfs:/Volumes/"
I got below error
โ07-09-2025 05:01 AM
Hello. You can create a volume in Databricks Free Edition to replace the dbfs. I had the same problem. I managed to create a volume.
โ07-15-2025 10:59 AM
Hi,
Still i am getting the same error..
โ07-15-2025 12:28 PM
Hello.
The problem is that the /FileStore/tables/ path doesn't exist in Databricks Free Edition.
Even though the first part of the code indicates a DataFrame was created, it wasn't.
And when you try to save the data to the created Volume, you get an error.
I used the same path you did.
โ07-09-2025 12:10 PM
The same problem, I tried to load a file from these variations, and I'm receiving the same error:
csv_file_path = "/FileStore/data-co-uk/data/raw/1920_E0.csv"
OR
csv_file_path = "/Workspace/Repos/felipedi@gmail.com/data-co-uk/data/raw/1920_E0.csv"
OR
csv_file_path = "dbfs:/Workspace/Users/felipedi@gmail.com/data-co-uk/data/raw/1920_E0.csv"
and received it:
Public DBFS root is disabled. Access is denied on path: /FileStore/data-co-uk/data/raw/1920_E0.csv
โ07-11-2025 07:21 AM
Hi @ViratKumar1061, has your problem been resolved? If not, could you provide an update so we look at next steps for a solution.
All the best,
BS
โ07-15-2025 05:22 PM
My problem was resolved. I discovered that I was trying to access via Repos, but I changed to access via Catalog, and it worked well.
โ07-16-2025 11:34 PM
As with new free edition DBFS is disabled, you need to import your csv file to catalog "https://www.youtube.com/watch?v=sOCQgoemQIo" refer this, then you can use this file path to access file and perform operations or .show()
Passionate about hosting events and connecting people? Help us grow a vibrant local communityโsign up today to get started!
Sign Up Now