cancel
Showing results for 
Search instead for 
Did you mean: 
Data Engineering
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.

Welcome to Databricks Community: Lets learn, network and celebrate together

Join our fast-growing data practitioner and expert community of 80K+ members, ready to discover, help and collaborate together while making meaningful connections. 

Click here to register and join today! 

Engage in exciting technical discussions, join a group with your peers and meet our Featured Members.