Cant remove file on ADLS using dbutils.fs.rm because url contains illeagal character
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2024 12:09 PM
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)