How do I delete a folder under Linux?

Source: Internet
Author: User
Tags create directory

Direct RM is available, but add two parameters-rf that is: RM-RF directory name
-R is recursive down, no matter how many levels of directory, deleted;
-F is directly forcibly deleted, without any hint of meaning.

For example: Delete a folder instance:

Rm-rf/var/log/httpd/access

The/var/log/httpd/access directory and all files and folders under it will be deleted

(there may be a problem here, if you use it directly, the system may not authorize this operation, and come out permisSion denied (no permission) prompt.

You need to add sudo as a license to authorize the operation before RM-RF, i.e. the name of the sudo rm-rf folder)

Example: Delete a file instance:

Rm-f/var/log/httpd/access.log

This file will be forcibly deleted/var/log/httpd/access.log

To be reminded: Use this rm-rf with extreme caution, Linux does not have a recycle Bin.

Of course, RM has more parameters and usage, and the man RM can be viewed.

There is also a way to be useful:

mkdir a Create directory A

RmDir a Delete directory a Note: rmdir can only delete empty directory, if there are files in the directory, then delete failed

How do I delete a folder under Linux?

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.