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: 

Cant remove file on ADLS using dbutils.fs.rm because url contains illeagal character

msgrac
New Contributor II

The URL contains a "[" within, and I've tried to encode the path from "[" to "%5B%27", but it didn't work: 

 

from urllib.parse import quote
path = ""
encoded_path = quote(path)
2 REPLIES 2

msgrac
New Contributor II

In my url, [ is followed by ', therefore I missed typing for an additional %27
but I still encountered the same issue with the remove response back False

NandiniN
Databricks Employee
Databricks Employee