home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PROGRAMS / UTILS / DOS_HELP / ELIM15.ZIP / ELIM.DOC < prev    next >
Encoding:
Text File  |  1991-02-06  |  3.8 KB  |  102 lines

  1.                                ELIM 1.5
  2.  
  3.                                    A
  4.                      Small program to delete files
  5.                        not accessible to DOS Del
  6.                                 - and -
  7.                   Avoid DEL's 'Are you sure?' prompt
  8.  
  9.                                   by
  10.                                Bob Eyer
  11.                              [73230,2620]
  12.  
  13.                               Feb 6, 1991
  14.  
  15.                    CAUTION: Please read the WARNING
  16.                             below
  17.  
  18.  
  19.      Syntax:
  20.  
  21.      ELIM filename/wildcard
  22.  
  23.      Discussion:
  24.      ----------
  25.      The  main  purpose  of  ELIM is to enable the user to delete files
  26.      which normal DOS DEL or ERASE cannot  handle.   For  example,  the
  27.      user  may  run  a  poorly  programmed  utility  which accidentally
  28.      creates files which have a blank or other illegal character in the
  29.      filename.  DOS DEL will not be able to delete such a  file.   ELIM
  30.      will solve the problem.
  31.  
  32.      ELIM 1.5, unlike previous versions,  will  always  report  on  the
  33.      screen  what  it did to each file, so the user can maintain proper
  34.      control.
  35.  
  36.      Advantages:
  37.      ----------
  38.      ELIM does not prompt the user for confirmation, where  a  wildcard
  39.      is  used.  Thus, it is unnecessary to pipe a "y" to DEL in a batch
  40.      file.  Just use ELIM.
  41.  
  42.      ELIM supports all DOS wildcard shortcuts.   For  example,  if  one
  43.      wishes  to  delete all the files in the TEST directory, one can do
  44.      that simply by issuing the command
  45.  
  46.      ELIM TEST\.
  47.  
  48.      The following are also legitimate:
  49.  
  50.      ELIM .
  51.      ELIM ..\.
  52.  
  53.      The Enclosed Demo
  54.      -----------------
  55.      Before  you  try  using  ELIM,  you  should  run DEMO in a special
  56.      directory containing all the  files  in  this  archive,  including
  57.      CREATE.EXE.   The sole function of the CREATE program is to enable
  58.      the DEMO.BAT file to create a zero-byte file on  your  disk  which
  59.      cannot  be  deleted by DOS's DEL command.  The DEMO shows how ELIM
  60.      does what DEL cannot.
  61.  
  62.      Errors:
  63.      ------
  64.      Error responses always return a DOS error level of 1.
  65.  
  66.      If  the  user  specifies  a filename or wildcard to which no files
  67.      correspond, ELIM will return the message "No such file(s)" and  an
  68.      error  level  of 1.  If nothing is mentioned as a parameter on the
  69.      commandline, ELIM will return to the user a small help screen  and
  70.      an error level of 1.
  71.  
  72.      All other ELIM terminations return an error level of 0.
  73.  
  74.      ELIM's  error  level  returns  make  it  possible  to  use ELIM in
  75.      automated batch file programs.
  76.  
  77.      WARNING:
  78.      -------
  79.      Avoid  using ELIM in preference to DOS DEL, unless you really know
  80.      what you are doing.  The designers of DOS deliberately put in  the
  81.      'Are  you  sure?' prompt on the DEL command for a reason, and that
  82.      reason is that it's better to be safe than sorry.
  83.  
  84.      ELIM is designed to be used by people who know what they're doing,
  85.      not people for whom the 'Are you sure?' prompt was designed.
  86.  
  87.      DISCLAIMER:
  88.      ==========
  89.      This program is circulated as public domain without any  guarantee
  90.      or  warranty;  and  the  user, by downloading this program, or any
  91.      variant thereof or by receiving it or any of its versions  in  any
  92.      other  form, agrees to accept full responsibility for its use.  It
  93.      is therefore understood that the user accepts this program or  any
  94.      previous  version  as  is.
  95.  
  96.      Bob Eyer                  The author may also be reached at
  97.      Compuserve [73230,2620]   ROSE MEDIA 416-733-2285 (Main Conf)
  98.      Toronto                   or
  99.      Canada                    CANADA REMOTE 416-629-7044 (IBM Conf)
  100.      -------------------------------------------------------------
  101.      End of documentation.
  102.