rmdir: failed to remove: Directory not empty

Wajeeh Ahsan
Oct 29, 2020

--

Use the below command :

rm -rf folderName

It deletes all files and folders contained in the folderName directory.

In case user doesn’t have the permission to delete the folder:

Add sudo at the beginning of the command :

sudo rm -rf folderName

Otherwise, without sudo you will be returned permission denied. And it's a good practice to try not to use -f while deleting a directory:

sudo rm -r folderName

Note: this is assuming you are already on the same level of the folder you want to delete in terminal, if not:

sudo rm -r /path/to/folderName

FYI: you can use letters -f, -r, -v:

  • -f = to ignore non-existent files, never prompt
  • -r = to remove directories and their contents recursively
  • -v = to explain what is being done

--

--

Wajeeh Ahsan
Wajeeh Ahsan

No responses yet