home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / INFO / C / RES.ZIP / RES.DOC < prev    next >
Encoding:
Text File  |  1988-02-26  |  1.4 KB  |  43 lines

  1. Res revision 2.0 by S. Ostrander.
  2.  
  3. This is public domain; The user assumes all responsibility for the correct use
  4. of this program.
  5.  
  6.  
  7. Purpose:   A replacement for the dos RESTORE command.
  8.  
  9. Usage:     RES inputfile outputfile
  10.  
  11. examples:  RES a:backup.arc c:backup.arc
  12.            RES a:test.exe test.exe
  13.            RES test.exe test.tmp
  14.  
  15.  
  16. warnings: It is illegal to have the inputfile and the outputfile names being
  17.           the same unless the source and destination drives/path are different
  18.  
  19.           There is no provision for the swapping of disks in a single floppy
  20.                drive system.
  21.  
  22.           Res can not handle backed up files that extend accross two or more
  23.                floppy disks.
  24.  
  25. If a backed up file extends accross two or more disks use the following method:
  26.  
  27.         RES a:example.arc example.1
  28.         <switch disks>
  29.         RES a:example.arc example.2
  30.         <switch disks>
  31.         RES a:example.arc example.3
  32.         copy /b example.1 + example.2 + example.3  example.arc
  33.  
  34. Why would you want to use Res?
  35.     1)  sometimes restore won't restore a file.  Res will.
  36.     2)  The dos restore command when restoring will only put the file back
  37.             into the same subdirectory that it was backedup from.  Res will use
  38.             any subdirectory during restoration.
  39.  
  40. Res was developed on an IBM PC compatible under MSDOS 3.2.  It should work
  41. on earlier versions of DOS.
  42.  
  43.