home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 19 / CD_ASCQ_19_010295.iso / vrac / rzsplt14.zip / RZSPLIT.DOC < prev    next >
Text File  |  1994-10-31  |  4KB  |  103 lines

  1.  
  2. RZSplit V. 1.4 - A DOS utility to split files to make them fit on a floppy.
  3. ==============
  4.  
  5.     The utility RZSplit is actually 2 programs in one.  It will not only
  6. split a files into smaller files, but also create your original file from
  7. the smaller files.
  8.  
  9. I have tried to "split" ZIP files using other programs, but none of them
  10. worked if you had a larger file in your ZIP.  This program will change all
  11. that.
  12.  
  13. This utility works with ANY kind of DOS file. (i.e. ZIP, ARJ, TXT)
  14.  
  15. The syntax to split a large file is quite easy. Just type:
  16.  
  17.   "rzsplit <filename> [288] [144] [12] [720] [360]"
  18.  
  19. <filename> = The DOS file you want to split.
  20.  
  21. [288] = RZSPLIT will write out files that are 2.8M in size.
  22. [144] = RZSPLIT will write out files that are 1.4M in size.
  23. [12]  = RZSPLIT will write out files that are 1.2M in size.
  24. [720] = RZSPLIT will write out files that are 720K in size.
  25. [360] = RZSPLIT will write out files that are 360K in size.
  26.  
  27. for example, say the file "altersnd.zip" is 600,000 bytes. If we were
  28. to type:
  29.  
  30. -----------------------------------------------------------------
  31. C:> rzsplit altersnd.zip 360
  32.  
  33. RZSplit creating Split files..
  34.  
  35. Writing out: altersnd.001     --\ These are called "split files",
  36. Writing out: altersnd.002     --/ and they are 360K or smaller.
  37.  
  38. RZSplit Finished.
  39. ------------------------------------------------------------------
  40.  
  41. The syntax to create your original file is also quite easy. Just type:
  42.  
  43.   "rzsplit <filename> [-d]"
  44.  
  45. <filename> = The DOS file you want to create. (WITHOUT THE EXTENSION)
  46.  
  47. [-d] = If given, RZSPLIT will delete your "split files", after they
  48.        have been read.
  49.  
  50. Now say you want to create your "altersnd.zip" file by using your
  51. "split files". If you want your "split files" deleted, use the "-d" option.
  52. Make sure ALL your "split files" are in your current directory, and type:
  53.  
  54. ------------------------------------------------------------------
  55. C:> rzsplit altersnd
  56.  
  57. RZSplit creating Original file..
  58.  
  59. Opening:  altersnd.001
  60. Building: altersnd.zip
  61. Opening:  altersnd.002
  62.  
  63. RZSplit Finished.
  64. ------------------------------------------------------------------
  65.  
  66. NOTE: The "split files" written in a previous version of RZSPLIT will
  67.       NOT work with version 1.4.
  68.  
  69.  
  70. LEGAL STUFF
  71. ===========
  72.  
  73. The programmer cannot accept responsibility for any damages that may be
  74. incurred by the use of RZSPLIT.
  75.  
  76. This program is FREEWARE and may be copied and distributed without charge
  77. and without further permission to anyone and everyone.  I would love to see
  78. thousands, even millions of people use this program.  This program must not
  79. be sold for profit.  It may be included with other products, commercial or
  80. otherwise, as long as this text file is included, and both it and the
  81. program are not modified in any way.
  82.  
  83.  
  84. Revision Notes
  85. ==============
  86.  
  87.  06/08/94 - Initial Release (version 1.0).
  88.  10/21/94 - Version 1.1.  Improved on the documentation, added ability
  89.             to delete or keep the "split files".
  90.  10/23/94 - Version 1.2.  Increased speed of file access by changing
  91.             the buffer size from 1K to 8194K.
  92.  10/27/94 - Version 1.3.  Added more error checking code, and changed
  93.             buffer size to 4096K, to fit more on each floppy.
  94.  11/01/94 - Version 1.4.  Changed format of Split Files to include
  95.             file size of the original file. This is useful because now
  96.             I now if the re-created file does not match the original file,
  97.             there is a problem.
  98.  
  99. Written by R. Zino in Turbo C++.  I can be reached at "rjz@indcomp.com"
  100. for comments/questions.
  101.  
  102. -EOF-
  103.