del directory linux code example

Example 1: how to remove folder and its contents in linux

rm -rf dirname

Example 2: delete directory linux

rm -rf dir1

Example 3: bash remove directory

# EXAMPLE
rm -r YourFolderName

# SYNTAX
# rm [option(s)-if-any] <folder(s)-to-remove-including-contents>

# +---------+------------------------------------------------------------------+
# | OPTIONS |  DESCRIPTION                                                     |
# +---------+------------------------------------------------------------------+
# |   -f    |  Force: ignore nonexistent files, never prompt                   |
# |   -i    |  Interactive: prompt before every removal                        |
# |   -I    |  Interactive: only prompt before removing more than three files  |
# |   -r    |  Recursive: remove directories and their contents recursively    |
# |   -v    |  Verbose:  explain what is being done                            |
# +---------+------------------------------------------------------------------+

Example 4: remove directory from linux

rm -r filename

rm -rf filename

this command remove the directory and subdirectory forecefully

Example 5: how to delete a dir in linux

#In linux Terminal:
	#To make a directory:
		mkdir directory_name
	#To delete a directory: 
		rmdir directory_name