home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR3 / FFG153.ZIP / DEMOBAT.ZIP / ZIPTODAY.BAT < prev   
DOS Batch File  |  1993-05-04  |  546b  |  23 lines

  1. @echo off
  2. cls
  3. echo All files on C: dated today will be archived into a ZIP file (TODAY.ZIP).
  4. echo Gathering a list of today's files...
  5. pause >nul
  6. echo on
  7. ffg>today.lst C:* /dT /fp /fs!
  8. @echo off
  9. pkzip -wH today.ZIP @today.lst
  10. del today.lst
  11. cls
  12. echo Next File Finder/Grouper will be used to view the contents of the ZIP file:
  13. pause
  14. echo on
  15. ffg .\* /r /z.zip /dT
  16. @echo off
  17. echo Since this is a demo the TODAY.ZIP will now be deleted.
  18. pause
  19. del today.zip
  20. @echo off
  21. echo Done.  Press any key for next demonstration...
  22. pause>nul
  23.