RDELETE.COMThe recursive delete utilityCopyright (C) 2000By Tom HuntAll Rights Reserved World Wide     There, now that I've gotten that out of the way, allow me to describe what this utility does and how to use it.  Rdelete.com is a Sparta DOS utility that will delete all files and all subdirectories in a given directory tree.  That is to say, it will delete all of the subdirectories and all of the files under a given directory.  For example, if a directory tree looks like this-D1:>TEXTD1:>TEXT>DOCSD1:>TEXT>DOCS>GAMESD1:>TEXT>DOCS>BBS..., this utility can delete all of these subdirectories and all of the files contained in them.  ===================================USAGE===================================     Rdelete.com may be used with or without command line parameters.  If command line parameters are not used, the program will prompt you for the complete delete path specification.  Regardless of whether or not command line parameters are used, the path specification must be constructed as follows:     You must use the COMPLETE input path, including the initial '>' character at the root of the path, right after the 'Dx:'.  Do not use relative paths, or '<' characters.  For example:D1:>PATH1>PATH2>*.*  is legal, butD:PATH1 , orD1:<PATH2>PATH1 isn't legal.The delete path must be terminated with the '>' character and a file mask.  The only legal file mask is '*.*'.  The program isn't smart enough to use wildcards in the directory segments of the path or the file mask segment of the path.  For example:D1:>PATH1  isn't legal,D1:>PATH1> isn't legal, butD1:>PATH1>*.* is legal.D1:>PATH1>*.DOC isn't legal either.===================================EXAMPLE OF USE===================================RDELETE D1:>MACROS>*.*This would delete all files in D1:>MACROS and all subdirectories and files under it.