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)
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2024 10:47 AM
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
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-31-2025 11:57 PM