Instead of using the DELTREE as one of the guys pointed out can be dangerous, try doing this...just a little more time consuming but gives you a little safer route.
Get in the directory you want to delete the files in like:
C:\ (starting point)
cd \directorytowack (you type this)
C:\directorytowack ( system replies)
C:\directorytowack
del *.* (you are deleting all files in THIS directory)
C:\directorytowack
dir (it should be empty)
C:\directorytowack
cd.. (bumps you up one level)
C:\ (you are back up to the root)
C:\
rd or
rmdir directorytowack
C:
dir (directorytowack is gone)
This should get you going.
When you have some "play" time chck out:
http://www.colorado.edu/geography/gc...s/doshelp.html
It's a little tutorial called DOS Essentials
- Jim