Yes - I've run into that same issue with the Dholak Loops from what I recall.
When I run into an undeletable folder or content this is what works for me...
Open an
elevated command prompt (run as admin) and:
Use the del command to delete undeletable files: del “Path of File”
Use the RMDIR or RD command to delete undeletable folders: rd /s /q “Path of Folder”
• /S : Delete all files and subfolders in addition to the folder itself. Use this to remove an entire folder tree.
• /Q : Quiet – do not display Y/N confirmation
Be very careful while using this method and use the correct commands, double check the folder name to avoid nuking the wrong item.