home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / UTILITY / DIR / ELIM10.ZIP / ELIM.DOC < prev    next >
Encoding:
Text File  |  1990-11-24  |  2.7 KB  |  77 lines

  1.                                ELIM 1.0
  2.  
  3.                      Small program to delete files
  4.                        not accessible to DOS Del
  5.  
  6.                                   by
  7.                                Bob Eyer
  8.                              [73230,2620]
  9.  
  10.      Syntax:
  11.  
  12.      ELIM filename/wildcard
  13.  
  14.      Discussion:
  15.      ----------
  16.      The  main  purpose  of  ELIM is to enable the user to delete files
  17.      which normal DOS DEL or ERASE cannot  handle.   For  example,  the
  18.      user  may  run  a poorly programmed utility which can create files
  19.      which have a blank or other illegal  character  in  the  filename.
  20.      DOS  DEL  will not be able to delete such a file.  ELIM will solve
  21.      the problem.
  22.  
  23.      Demo:
  24.      ----
  25.      Included  in  this archive are DEMO.BAT and CREATE.EXE.  The batch
  26.      file requires that both ELIM and CREATE are in your DOS path.  The
  27.      demo is merely a demonstration of the discussion above.
  28.  
  29.      Advantages:
  30.      ----------
  31.      ELIM  does  not prompt the user for confirmation, where a wildcard
  32.      is used.  Consequently, it is unnecessary to pipe a "y" to DEL  in
  33.      a batch file.  Just use ELIM.
  34.  
  35.      ELIM  supports  wildcard shortcuts.  For example, if one wishes to
  36.      delete all the files in the TEST directory, one can do that simply
  37.      by issuing the command
  38.  
  39.      ELIM TEST\.
  40.  
  41.      The following are also legitimate:
  42.  
  43.      ELIM .
  44.      ELIM ..\.
  45.  
  46.      and so on.
  47.  
  48.      Errors:
  49.      ------
  50.      Where  some  or  all  of  the files in question are unavailable to
  51.      write access, or where the directory mentioned does not  exist  or
  52.      is improperly specified, ELIM will return the error message
  53.  
  54.      Path/file access error
  55.  
  56.      and return a DOS error level of 1.
  57.  
  58.      This situation would normally arise where  the  file(s)  are  Read
  59.      Only, or where, in a network situation, they are being accessed by
  60.      another user without SHARE protection.
  61.  
  62.      WARNING:
  63.      -------
  64.      Avoid  using ELIM in preference to DOS DEL, unless you really know
  65.      what you are doing.  The designers of DOS deliberately put in  the
  66.      'Are  you  sure?' prompt on the DEL command for a reason, and that
  67.      reason is that it's better to be safe than sorry.
  68.  
  69.      DISCLAIMER:
  70.      ==========
  71.      This program is circulated as public domain without any  guarantee
  72.      or  warranty;  and  the  user, by downloading this program, or any
  73.      variant thereof or by receiving it or any of its versions  in  any
  74.      other  form, agrees to accept full responsibility for its use.  It
  75.      is therefore understood that the user accepts this program or  any
  76.      previous  version  as  is.
  77.