Suppose you would like to delete a file or directory to ease some time.
let's start with locating our folder, our folder is inside My Documents we will name this
deletethisfolderopen your cmd, then locate your folder.
Follow this path in your cmd
C:\Documents and Settings\admin> cd "My Documents"
Press Enter,
C:\Documents and Settings\admin\My Documents>rmdir /s /q
ex.
C:\Documents and Settings\admin\My Documents>rmdir /s /q "C:\Documents and Settings\admin\My Documents\deletethisfolder"
or this:
C:\>rmdir /s /q "C:\Documents and Settings\admin\My Documents\deletethisfolder"
That's it! your folder is now deleted!!!
If you want only a sub-folder under "deletethisfolder" directory let's say another_sub_directory
then we'll append the name of the sub directory/folder:
C:\Documents and Settings\admin\My Documents>rmdir /s /q "C:\Documents and Settings\admin\My Documents\deletethisfolder\another_sub_directory"
Hope this Help you GUYS! stick around!!!