home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 19 / CD_ASCQ_19_010295.iso / vrac / rtape400.zip / SENDFILE.BAT < prev    next >
DOS Batch File  |  1994-11-10  |  597b  |  25 lines

  1. @ECHO OFF
  2. REM Do Not Delete This File!!!
  3. REM It Must Be Present In Robo Tape's Home Directory.
  4. REM .
  5. REM Parameters For Calling This Batch File Are...
  6. REM %1 Com Port Number 1 = Com 1....
  7. REM %2 Baud Rate User Is Logged On At.
  8. REM %3 Transfer Protocol b=Ymodem, z=Zmodem.
  9. REM %4 List of files to transfer.
  10. REM .
  11. :LOOP
  12.    DSZ port %1 s%3 %4
  13.    if errorlevel 1 goto BAD
  14.    if errorlevel 0 goto DONE
  15.    goto DONE
  16. :BAD
  17.    CLS
  18.    del STATUS.DAT
  19.    echo WARNING: Bad Download !!!
  20.    echo Exiting With Errorlevel 1
  21.    goto DONE
  22. :DONE
  23.    CLS
  24.    echo Exiting Back To Robo Tape.....
  25.