home *** CD-ROM | disk | FTP | other *** search
/ Current Shareware 1994 January / SHAR194.ISO / deskutil / rpm33.zip / DELPROJ.BAT < prev    next >
DOS Batch File  |  1990-02-11  |  347b  |  28 lines

  1. echo off
  2.  
  3. if not .%1. == .. goto test 
  4.  
  5.    echo ---  
  6.    echo Format is: DELPROJ projname. 
  7.    echo ---
  8.    goto exit
  9.  
  10. :test
  11.  
  12. if exist %1.prj goto ok
  13.  
  14.    echo ---
  15.    echo No project called %1 found. 
  16.    echo ---
  17.    goto exit
  18.  
  19. :ok
  20.  
  21.    erase %1.not
  22.    erase %1.prj
  23.    erase %1.dis
  24.    erase %1.ind
  25.    erase %1.bak
  26.  
  27. :exit
  28.