How do I remove a full directory in Linux Done

July 13, 2021 . 1 MIN READ

How do I remove a full directory in Linux?

 

To remove a directory that is full with other files or directories, use the below command.

rm -r directory

In the above example, you would replace “directory” with the name of the full directory you wish to delete. So if the directory was named files, you would type: rm -r files

In the above example the command would prompt you as directories and files were being deleted if you wanted to force the delete with no prompts add the ‘f’ option to the command as shown below.

rm -rf directory

Additional information

When attempting to remove a directory using a command such as the rmdir command, you may receive a prompt such as “rmdir: ‘dir’: Directory not empty” and be unable to delete the directory.

  • See the rm and rmdir commands for further information about each of these commands and other available switches.

 

Leave a Reply

Your email address will not be published. Required fields are marked *