home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / UTILITY / ARCHIVE / ZSIZE122.ZIP / ZSIZE122.DOC next >
Encoding:
Text File  |  1991-08-14  |  4.5 KB  |  87 lines

  1. Zipsize 1.22 (tm) ZIP File Size Manager
  2. Copyright (C) 1990-91 by Kerry B. Rogers. All rights reserved.
  3. If you use this program and find worth, please consider donating $49 to:
  4.  
  5.          Kerry B. Rogers
  6.          10109 Collett Way
  7.          San Diego, CA 92124
  8.  
  9. Purpose: ZIPSIZE will take any ZIP file and break it into smaller ZIPs
  10.          no larger than the maximum size you specify. It is extremely
  11.          accurate and saves on time required to split-up and move large
  12.          ZIPs to floppy. The speed of ZIPSIZE is utterly uncanny! The main
  13.          reason for this is that most of the work has been done before
  14.          ZIPSIZE even starts working. By this I mean, you must already
  15.          have a ZIP (ZipFileName) created for ZIPSIZE to work with and
  16.          because of this, the time-consuming compression of each file in
  17.          the ZIP has already been accomplished. ZIPSIZE simply reads the
  18.          original ZIP (ZipFileName), gathers the information it needs to
  19.          determine how many smaller ZIPs it needs and what goes where,
  20.          COPIES the ZIP (ZipFileName), uses PKZIP to delete whatever files
  21.          it needs to meet each of the new ZIPs criteria, and voila! FAST!
  22.          (as Phil Katz puts it...).
  23.  
  24. Syntax: ZIPSIZE <ZipFileName> <MaxSizeWanted> [KEEP]
  25.         "ZipFileName" is the ZIP file to extract from. Mandatory.
  26.         MaxSizeWanted is the maximum size you want the ZIPs to be. Mandatory.
  27.         KEEP indicates "DO NOT" delete "ZipFileName". The default is "DO".
  28.  
  29. Examples: zipsize numbers.zip 12000 keep
  30.           zipsize larry3.zip 360000
  31.           zipsize ryan 1200 KEEP
  32.           ZIPSIZE STEALTH.ZIP 34812 keep
  33.           zipsize C:\UTIL\ALLSTUFF.ZIP keep
  34.           ZIPSIZE d:\arkives\bbs\original\grady 361000
  35.  
  36. Optional: You don't have to add ".ZIP" to the "ZipFileName".
  37.           Pathnames are allowed.
  38.           MaxSizeWanted MUST be in the range of 489 to 16,777,215 (but you
  39.           will still need to chop that down to leave room for the control
  40.           data area...heh).
  41.           
  42. Required: "ZipFileName" will ALWAYS be broken into smaller ZIPs using the
  43.           SAME NAME with an alphabetical letter attached to the end;
  44.           therefore, ensure the "ZipFileName" (path excluded) DOES NOT
  45.           exceed 7 letters. (e.g. SOLO.ZIP creates SOLOA.ZIP, SOLOB.ZIP,
  46.           SOLOC.ZIP, etc. and DOWNLING.ZIP would come out DOWNLINGA.ZIP
  47.           which, if you noticed, is a nine letter filename. Only eight
  48.           letter filenames are allowed by DOS so plan accordingly. You
  49.           may have to change the name of your "ZipFileName" to ensure it
  50.           is only seven letters (max) long. Again, this doesn't apply to
  51.           the path that you may have preceding the "ZipFileName".
  52.  
  53. Tips: - Use a ramdrive whenever possible. (Heed 3rd warning below!)
  54.       - Setup PKZIP.CFG in accordance with the documentation that came with
  55.               PKZIP/PKUNZIP. It eases things tremendously.
  56.       - Use ZIPSIZE to chop and pack a large ZIP into 360K segments for moving
  57.               to floppy.
  58.       - Rename ZSIZE12.EXE to ZS.EXE for ease of typing at DOS prompt.
  59.       - Remember that if you're trying to fill a 360k floppy, the actual
  60.               maximum filesize allowed is right around 362496 instead of
  61.               360000.
  62.  
  63. Warnings: - Not using "KEEP" will end up DELETING your original "ZipFileName".
  64.           - Once ZIPSIZE starts, it won't stop until done (except for reboot).
  65.           - "ZipFileName" (as mentioned before) MUST BE 7 letters MAX!
  66.           - There MUST be at least twice the free disk space that ZipFileName
  67.             takes up (not including the actual space taken up by ZipFileName)
  68.             (e.g. if ZipFileName=1000 bytes you need 3000 bytes of free space).
  69.  
  70. Disclaimer: I give no warrantee with this program. Use it at your own risk.
  71.             It works for me!
  72.  
  73. Upgrades and enhancements: Depends on donations and suggestions supplied
  74.                            to the above address. None planned as of yet.
  75.  
  76. History:
  77.  
  78. ZipSize 1.0:  Basic program
  79. ZipSize 1.1:  Speed enhancement added.
  80. Zipsize 1.2:  Zipping removed. Copy and delete from ZIP added for speed.
  81. ZipSize 1.21: Free space checked prior to execute with option to continue.
  82.               Fixed miscalculation in free space vs space needed.
  83.               Version number displayed incorrectly at one point.
  84.               Added this history to docs.
  85. ZipSize 1.22: Reworked Long and Integer routines for speed.
  86.               Slight mods to docs (address, tips, etc)
  87.