home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PROGRAMS / UTILS / COMPRESS / STRIPZ13.ZIP / README next >
Encoding:
Text File  |  1989-10-16  |  2.6 KB  |  85 lines

  1. After reading messages on BBS's about the problems caused by long comments
  2. containing ANSI sequences in ZIP files I thought it might be useful
  3. to have a utility that did nothing more than strip the file comment
  4. out of a ZIP file.
  5.  
  6. Version 1.3 (10/16/89)
  7.  
  8. Timestamps on ZIP files are preserved when the ZIP file is 
  9. modified.
  10.  
  11. Version 1.2 (7/5/89)
  12.  
  13. Can create a log file so that you can see which files contained comments
  14. and/or members with undesired attributes.  STRIPZIP checks for an
  15. environment variable called STRIPLOG.  STRIPLOG should be the name
  16. (and optionally the path) of the log file.  If this variable exists
  17. STRIPZIP will open the the log file and append messages to the
  18. end of the file.
  19.  
  20. This version is several times faster than version 1.1.  The extra
  21. speed is particularly noticable on files which do not contain
  22. comments (this is the way the thing should have been coded in
  23. the first place <sheepish grin>).
  24.  
  25.  
  26.  
  27.  
  28. Version 1.1  (4/1/89)
  29.  
  30. I've added an option which will reset the file attributes of the
  31. members of a ZIP file.  ReadOnly, System, and Hidden attributes
  32. will be removed.
  33.  
  34.  
  35. The syntax for STRIPZIP is the same as for my ZIPV:
  36.  
  37.         STRIPZIP [/B] [/R] file_spec1[.ZIP] [file_spec2[.ZIP]  ...  ]
  38.  
  39. The file specs can contain wildcards.  
  40.  
  41. The /B option will prevent the name and path of the ZIP file from 
  42. being displayed (this is primarily for BBS use).
  43.  
  44. The /R option will check the attributes of the members of the
  45. ZIP file and reset any which have the ReadOnly, System, or
  46. Hidden attribute set.
  47.  
  48.  
  49.  
  50. STRIPZIP creates a temporary file on the SAME drive as the ZIP file (so
  51. that I can simply rename the result).  This means that there must be
  52. approximately as much free disk space as the size of the largest ZIP
  53. file to be stripped.
  54.  
  55. If you strip a single file STRIPZIP returns an ERRORLEVEL of 0 if it
  56. is successful, an ERRORLEVEL of 1 if there is a problem.  The problem
  57. could either be that the ZIP file was invalid or that there wasn't
  58. enough disk space to process the file.  If you strip multiple files
  59. you will only get the result from the last file processed.  (STRIPZIP
  60. will stop if the disk is full but if the ZIP file is invalid it will
  61. skip it and process the next file.)
  62.  
  63.  
  64.         
  65.  
  66.  
  67.  
  68. _________
  69.  
  70.  
  71.  
  72.     The program is fully protected by copyright and all rights are 
  73.     reserved.  This program is distributed as "POSTware".  If you 
  74.     find the program useful please send a post card to:
  75.  
  76.         Ken Brown
  77.         5707 Jamestown Rd Apt 2
  78.         Hyattsville, MD  20782
  79.  
  80.     No registration is required.
  81.  
  82.  
  83.  
  84.  
  85.