cancel
Showing results for 
Search instead for 
Did you mean: 
Data Engineering
Join discussions on data engineering best practices, architectures, and optimization strategies within the Databricks Community. Exchange insights and solutions with fellow data engineers.
cancel
Showing results for 
Search instead for 
Did you mean: 

How can I delete folders from my DBFS?

Mir_SakhawatHos
New Contributor II

I want to delete my created folder from DBFS. But how? How can I download files from there?

2 REPLIES 2

__max
New Contributor III

Hello,

Please, take a look at the documentation:

https://docs.databricks.com/user-guide/dbfs-databricks-file-system.html#dbfs-command-line-interface

To delete created folder in notebooks:

%fs rm -r foobar

To download files, please, use dbfs:

# Get dbfs:/apple.txt and save to local file ./apple.txt
dbfs cp -r dbfs:/src ./dst

The tool could be installed via:

pip install --upgrade databricks-cli

Best regards,

Maxim Gekk

IA
New Contributor II

Hello,

Max answer focuses on the CLI. Instead, using the Community Edition Platform, proceed as follows:

# You must first delete all files in your folder.

1. import org.apache.hadoop.fs.{Path, FileSystem}

 

2. dbutils.fs.rm("/FileStore/tables/file.csv")

You can refresh DBFS each time you proceed to action above for checking is the file was deleted.

When all files are deleted then you can delete the folder using the same command (2.).

Good luck.

Join Us as a Local Community Builder!

Passionate about hosting events and connecting people? Help us grow a vibrant local community—sign up today to get started!

Sign Up Now