how to delete directory tree unix code example
Example 1: linux remove folder and all his content
rm -rf /path/to/directory
Example 2: 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.