home *** CD-ROM | disk | FTP | other *** search
/ Carsten's PPE Collection / Carstens_PPE_Collection_2007.zip / F / FDC99PWA.ZIP / TEST.BAT < prev   
DOS Batch File  |  1994-02-04  |  645b  |  47 lines

  1. @echo off
  2.  
  3. REM  This batchfile is here only to aid in demonstrating this PCBoard Util
  4. REM  and is not meant to be run in an automated instance.
  5.  
  6.  
  7. DATECHK.EXE %1 %2
  8.  
  9. if errorlevel 99 goto nozip
  10. if errorlevel 98 goto noparam
  11. if errorlevel 97 goto badtxt
  12. if errorlevel 96 goto badate
  13. if errorlevel 95 goto goodate
  14. goto end
  15.  
  16. :nozip
  17.  
  18. @echo.
  19. @echo ZIPFILE could not be opened!
  20. goto end
  21.  
  22. :badate
  23.  
  24. @echo.
  25. @echo File was BAD!
  26. goto end
  27.  
  28. :noparam
  29.  
  30. @echo.
  31. @echo No Parameters!
  32. goto end
  33.  
  34. :badtxt
  35.  
  36. @echo.
  37. @echo Some wrong with opening of tempfile...
  38. goto end
  39.  
  40. :goodate
  41.  
  42. @echo.
  43. @echo File was GOOD!
  44. goto end
  45.  
  46. :end
  47.