Open Windows Command Prompt
type
Quote:
RD /F /Q /S <full folder path>
|
RD = remove directory
/F = force deletion
/Q = force deletion of read only files
/S = all subdirectories and files
If your file path has spaces, then use quote marks at the beginning and end of the file path.
If RD doesn't work, then try using RMDIR instread of RD.