home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / UTILITY / DIR / DELDIR10.ZIP / READ.ME < prev   
Encoding:
Text File  |  1992-02-19  |  3.2 KB  |  81 lines

  1.  
  2. Thank you for using DELDIR.
  3.  
  4. NO PART OF THE BINARY OR SOURCE CODE OF THIS PROGRAM MAY BE MODIFIED OR
  5. REVERSE ENGINEERED IN ANY WAY WITHOUT THE AUTHORS EXPRESS PERMISSION !!
  6.  
  7. This is the help screen (obtained by running DELDIR without any arguments
  8. on the command line.) I think it pretty much says it all.
  9. _______________________________________________________________________________
  10.  
  11. DELDIR - A safe recursive directory & file removal program.
  12. Copyright (C) 1992 Shiraz Kanga. All rights reserved. No warranties provided.
  13.  
  14. Usage: DELDIR <directory> [ <safety level> ]
  15.  
  16. This program enables you to remove an entire branch of the directory structure
  17.  in one fell swoop by recursively deleting all of it's files and subdirectories
  18. Since this is potentially risky operation there are three levels of safety
  19.  built in, which may be specified as an argument on the command line.
  20.  
  21. Level 1 is the safest. It will prompt you before deleting any directory or file
  22.  It is much safer than even the DOS del *.*, but slower.
  23. Level 2 is faster. It prompts you before deleting directories but not files
  24.  Quite safe and fast enough. My personal favorite
  25. Level 3 is the fastest. It will delete files & directories without any prompts
  26.  Very destructive and fast. Good for use in batch files.
  27.  
  28. Level 1 is the default if no safety level is specified.
  29.  
  30. As a safety precaution DELDIR may not be invoked on the root directory.
  31.  
  32. Eg: DELDIR C:\XX\YY 3   Removes the directory's contents without any prompts.
  33.     DELDIR YYY 1        Removes directory yyy with complete prompt protection.
  34.  
  35. ERRORLEVEL: 0 on success, -1 on failure.             Press any key to continue.
  36. _______________________________________________________________________________
  37.  
  38. I do NOT warranty this software to be suitable for any purpose whatsoever.
  39. Use it at your own risk. I will not be liable for any losses.
  40.  
  41. This program is SHAREWARE. It was developed using Turbo C ver 2.0 on a PC clone
  42. with an 8088 cpu 640K ram, 2 floppy drives & NO hard drive - believe it or not.
  43.  
  44. YES !! This impoverished student needs your support.
  45.  
  46. A contribution of $10 will be greatly appreciated.
  47.  
  48. I will also accept your old hardware/software (In working condition - I hope)
  49. Eg: Drives, boards, monitors, compilers, OSes & even complete systems. ;-)
  50.  
  51. Please send in your contributions to:
  52.  
  53. Mr Shiraz Kanga
  54. 568 Atlantic Avenue, Apt #3
  55. Brooklyn, NY 11217
  56.  
  57. Internet: skanga@prism.poly.edu                      Hollernet: (718) 237-5876
  58.  
  59. Complete C source code available for US $18 + media/shipping/handling
  60.  
  61. Thank you for supporting the concept of shareware.
  62. ________________________________________________________________________________
  63.  
  64.  
  65. And this is a section of comments from the beginning of the source code
  66. of DELDIR (if you are interested)
  67.  
  68.  
  69. /************************************************************************
  70.  
  71. This program deletes a directory and its subdirectories by recursively
  72. removing its files, and then the directory itself.
  73.  
  74. The directory tree is traversed in a depth first search ( DFS ) order.
  75.  
  76. It returns an error code -1 if it fails, or 0 if everything is OK
  77.  
  78. To be added: support for wildcards
  79.  
  80. ************************************************************************/
  81.