Commad to Delete Nested Directory

Can someone please tell me the command to delete a NESTED DIRECTORY.

here is my email address:

                  [email]firewalls007@hotmail.com[/email]

If you are using UNIX then this should work to delete EVERYTHING below the directory you put in place of mydir (as long as you own it or you are root). It will also delete ./mydir.

$ rm -r ./mydir

Also sometimes if you want to force the delete you can use the -f switch with the command.