home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / UDEL.ZIP / UDEL.DOC < prev    next >
Text File  |  1988-10-21  |  3KB  |  83 lines

  1.  
  2. udel.exe - is an OS/2 utility that will allow deleting files from multiple
  3.            directories, the delete can be confirmed or no confirm option
  4.            can be used.  To example to delete all files with extension *.bak
  5.            from directory "msoftc" and all subdirectory under directory "msoftc"
  6.            the command would be.
  7.  
  8.            udel \msoftc\*.bak /s
  9.  
  10.            The default is to confirm all deletes.
  11.  
  12.            Note if your in the directory the directory name is options. If /s
  13.            switch is used it from the current directory.
  14.  
  15.            To have no confirm opiton use extension  /nc
  16.  
  17.            udel should allow any wild card character for exmple to delete
  18.            all files which start with xc from current directory with no confirm
  19.            the command would be.
  20.  
  21.            udel xc*.* /nc
  22.  
  23.  
  24.            When prompted for delele you may enter "Y" or  "y" to delete or ' '
  25.              or
  26.            'N' or 'n' to not delete.  A 'q' or 'Q' or ESC key will abort.  All
  27.            other keys will do nothing
  28.  
  29.  
  30.  
  31. I have included the source for the udel.c program and object library of some of
  32. the fuction it uses.  Function header files include.  The documentation is in
  33. the header file for the functions.
  34.  
  35. The header files are.
  36.  
  37.             sfdos.h  -  Dos related functions
  38.             sfprt.h  -  Printer fuctions.
  39.             sfkb.h   -  Key board.
  40.             sf.h     -  Misc functions. (may move some of thes to string
  41.                                          fuctions later)
  42.             sfscr.h  -  Screen.
  43.             sfstr.h  -  String.
  44.             sfdt.h   -  Date time functions.
  45.             sfmou.h  -  Mouse routines
  46.  
  47.             The object library included is  (large model)
  48.  
  49.             sfunc_sl.lib
  50.             udel.mak  -  Make file.
  51.  
  52.  
  53. Those wishing to obtain the source for the functions library may send check
  54. or money order for 10.00 for 5.25 disk or 11.00 for 3.5.  Please state you
  55. wish the OS/2 version since I also have a simalar function rutines for Turboc C
  56. The disk will also contain the source udel.exe a dos directory utility.
  57.  
  58. Please Send check / money order  to place order.
  59.  
  60. Thomas Sandberg
  61. 24220 Western Ave #B
  62. Harbor City, CA 90710
  63.  
  64. Call Home 213-325-4306
  65.  
  66.  
  67.  
  68.     Disclaimer.
  69.  
  70.     The author claims no responsibility for any damages caused by the use or
  71.     misuse of this library.  This product is distributed "as is" with no
  72.     warranty expressed or implied.  The author will not be responsible for
  73.     any losses incurred by the use of this product.  The author reserves the
  74.     right to make modifications at any time.  Prices are subject to change
  75.     without notice.
  76.  
  77.  
  78.  
  79.  
  80.  
  81.  
  82.  
  83.