Reputation: 318
For Example : suppose I have a directory like "C:\Users\user\Downloads\Compressed\Developing Android Apps Videos"
Now while deleting "Developing Android Apps Videos" folder, If an error popped up with this message that "FOLDER DOESN'T EXIST", How to fix such issue ???
Upvotes: 0
Views: 38
Reputation: 90
You can try below command also.
1.Open command prompt
2.Run below command
RD /S /Q pathOfTheFolder
ex: RD /S /Q C:\Users\Me\Documents\NewFolder
Here /S- Delete all sub folders and files. So once you delete any folder, all files and folders with in that folder will be deleted
/Q - Doesn't show Yes/No confirmation dialog box before deleting files are folders.
Upvotes: 0
Reputation: 318
you have to follow this steps to solve this issue:
Hopefully, this could help you and please find an attachment for the exact process. Thank you
Upvotes: 1