how to delete a directory in unix code example

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

rm -rf dirname

Example 2: how to remove directory in cmd

# for removing empty directory
$ rmdir myDirectory

# to remove a directory that contains files and subdirectory
$ rm -r myDirectory
rm -rf /config/filegroups/*/

Example 3: how to delete a dir in linux

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

Example 4: how to delete directory in unix

rmdir directoryname  	// This is will delete an empty directory. 

rmdir -r directoryname 	// This is will delete everything in the directory
						// including all files and subdirectories.

Tags:

Misc Example