|
deltree.exe
Delete Tree is used to delete a directory and all files and directories that exist in that directory. It will not place the folder in the Recycle Bin.
Warning: This program will delete the directory you specify and every file and directory below it.
USAGE:
deltree directory_name [/F] [/?]
COMMAND OPTIONS:
|
directory_name
|
Directory name to delete
|
|
/F
|
Force directory delete without asking if okay
|
|
/?
|
Display help file
|
EXAMPLES:
To delete a directory in the current directory called "waste" and be prompted if okay to delete, type:
deltree waste
To delete a directory in the current directory called "waste" and NOT be prompted if okay to delete, type:
deltree /F waste
|