home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 September / Simtel20_Sept92.cdr / msdos / arc_lbr / arcdmp1.arc / ARCDMP.DOC < prev    next >
Text File  |  1988-01-01  |  3KB  |  65 lines

  1.  
  2.                                   ARCDMP V1.1
  3.                               An ARC-File Chopper
  4.                             by Jim Kyle [76703,762]
  5.                                     CLMFORUM
  6.  
  7.        ARCDMP is a program which does for ARC files what Jean LaLonde's
  8.      FILL.EXE program does for subdirectories: pulls out the maximum number
  9.      that can fit on a single floppy disk and copies them into a new file,
  10.      then repeats the process until the entire ARC file has been copied.
  11.      All the new files, except for the last one, will be packed as full as
  12.      they can be and still fit on a standard 360K floppy.
  13.  
  14.      The ARCDMP.ARC file contains this document, the C source for the
  15.      program, and the EXE file.  You need only the EXE file to use it.
  16.  
  17.      Here's a typical output from a test run of ARCDMP:
  18.  
  19.                      C>arcdmp ../arcdmp a:da
  20.                        Floppy = 12237 bytes (A:DA001.ARC):
  21.                      ARCDMP.C           2587        0
  22.                      ARCDMP.EXE         9650     2587
  23.                        Final-->            0        0
  24.  
  25.        The first line shows how to run the program.  The first argument
  26.      passed on the command line is the name of the ARC file to be
  27.      processed, and the second is the "prefix" portion of the names to be
  28.      used for the output files.  The prefix name will be trimmed to the
  29.      first five characters.  Subdirectories can be identified by the
  30.      backslash '\' or slash '/' characters.  Drive names are optional and
  31.      assume the current drive if not given.
  32.  
  33.        As ARCDMP processes the ARC file, it will produce a "Floppy ="
  34.      report line each time it is ready to output a file.  The number is the
  35.      exact size of the output file, and the filename in parentheses is the
  36.      one which will be assigned to the output file.
  37.  
  38.        Following that line are the names of the files being copied.  The
  39.      first number reported is the file size in bytes.  The second is an
  40.      internal value (the offset in bytes within the original file at which
  41.      that file begins).  After all files have been reported, the "Final-->"
  42.      line indicates completion of that segment of the task.
  43.  
  44.        If the original file requires more than one output file, the
  45.      sequence of report lines is repeated for each in turn.  The sequence
  46.      number (last three digits in the output filename) increases by one for
  47.      each.
  48.  
  49.        When processing is complete, you'll see a DOS prompt.  The program
  50.      gives no explicit end-of-processing report.
  51.  
  52.                                    DISCLAIMER
  53.  
  54.        This program is supplied at no charge to the user, and neither its
  55.      author nor any organization involved in its distribution warrants it
  56.      in any way.  While it is believed to be useful, use is entirely at
  57.      your own risk.  Use of the program constitutes acceptance of this
  58.      condition.
  59.  
  60.        If you find ARCDMP useful, let me know.  I'll be glad to listen to
  61.      suggestions for improvement, and eager to fix any reported bugs.
  62.  
  63.                                                 Jim Kyle
  64.                                                 December 18, 1987
  65.