You can the folder or directory, if they are empty using the following rmdir command.
Syntax
rmdir foldername
rmdir dirname
rmdir /path/to/folder
rmdir /path/to/directory
Example
In this example, delete the directory called /tmp/letters
rmdir /tmp/letters
Task: Remove DIRECTORY and Its Ancestors
The -p option can delete directory and its subdirectories:
rmdir -p dir1/dir2/dir3
Task: Delete All Files and Folders Including Subdirectories
Use the following syntax:For example, delete /home/vivek/docs and all its subdirectories including file, enter:
rm -rf /path/to/dir
rm -rf /home/vivek/docs
ls -l /home/vivek/docs
No comments:
Post a Comment