home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PROGRAMS / UTILS / COMPRESS / ZIPDS12.ZIP / ZIPDS.DOC < prev    next >
Encoding:
Text File  |  1991-01-03  |  2.4 KB  |  82 lines

  1.  
  2.                     ZIPDS - Zipfile Date Stamper
  3.                            v1.2, 01-03-91
  4.                    Copyright 1991 Samuel H. Smith
  5.  
  6.  
  7. This utility can be used to QUICKLY update the date/time stamp on a
  8. bunch of Zipfiles.  It also checks for truncated or garbled ZIPs (it
  9. does not verify the CRC, but still catches about 80% of all bad
  10. Zipfiles.)
  11.  
  12. It will update my entire upload directory in less than a minute. When
  13. used with 'sweep' (or similar) it can be used to globally update all
  14. Zipfiles on your system.
  15.  
  16.  
  17. Usage:  zipds *.ZIP [>OUT]
  18.  
  19.    Sets non-0 errorlevel on truncated or corrupt Zipfiles
  20.  
  21.  
  22. Example:
  23.    zipds d:\upload\*
  24.    if errorlevel 1 goto errors
  25.  
  26.  
  27. I write ZIPDS because PKZIP 0.90 cannot update zipfile timestamps
  28. without also updating at least one member file, making it impractical to
  29. use for batch updates.
  30.  
  31.  
  32. This program is provided courtesy of:
  33.  
  34.          Samuel H. Smith
  35.          The Tool Shop
  36.          P. O. Box 4808
  37.          Panorama City, CA 91412-4808
  38.  
  39.           Phone number         Modem type
  40.          --------------    ---------------------
  41.          (818) 891-3772    US Robotics HST 9600
  42.          (818) 891-1344    Hayes-V series 9600
  43.          (818) 891-6780    US Robotics 2400 (free line)
  44.  
  45.  
  46. Disclaimer
  47. ----------
  48.  
  49. This software is completely FREE.   I ask only for your comments,
  50. suggestions and bug reports.   If you modify this program, I would
  51. appreciate a copy of the new source code.   Please don't delete my name
  52. from the program.
  53.  
  54. I cannot be responsible for any damages resulting from the use or mis-
  55. use of this program!
  56.  
  57. If you have any questions, bugs, or suggestions, please contact me at
  58. The Tool Shop,  (818) 891-6780.
  59.  
  60. Enjoy!     Samuel H. Smith
  61.  
  62.  
  63. Revision History
  64. ----------------
  65.  
  66. 02-19-89 v1.0
  67.    Initial release
  68.  
  69. 03-03-89 v1.1
  70.    Added error messages compatible with ProDoor for faulty zipfiles.
  71.    This is required when testing zipfiles under prodoor 2.8 and 2.9 due
  72.    to the inconsistancy of error messages generated by 'PKUNZIP -t'.
  73.  
  74. 03-04-89 v1.1a
  75.    Slight change in output format to prevent ProDoor from displaying the
  76.    directory in which the file resides.  Changed date-stamp logic to
  77.    prevent removing date entirely on corrupt zipfiles.
  78.  
  79. 01-03-90 v1.2
  80.    Changed logic to prevent an endless series of error messages on
  81.    ZIP files containing AV codes.
  82.