Reputation: 11
There is a folder named Recycler in the directory of my external hard drive and it has a subfolder named cvx
which I cannot delete it. I used cmd
to do this. I wanted to change it using attrib -h -s /d /s
, but it reported Access Denied -L:\Recycler\cvx
, I also tried to delete it using del cvx
, but it couldn't be done. Could you help me with this?
Thank you in advance.
Upvotes: 1
Views: 169
Reputation: 594
You could try to change the access permissions using the dialog in windows explorer
Attempts to delete should be made easier by that.
Upvotes: 1
Reputation: 7046
Access Denied sounds like a permissions issue.
takeown /f L:\Recycler /r /d y
icacls L:\Recycler /grant administrators:F /t
rd /s/q "L:\Recycler\cvx"
Upvotes: 1