home *** CD-ROM | disk | FTP | other *** search
- @echo off
- cls
- echo All files on C: dated today will be archived into a ZIP file (TODAY.ZIP).
- echo Gathering a list of today's files...
- pause >nul
- echo on
- ffg>today.lst C:* /dT /fp /fs!
- @echo off
- pkzip -wH today.ZIP @today.lst
- del today.lst
- cls
- echo Next File Finder/Grouper will be used to view the contents of the ZIP file:
- pause
- echo on
- ffg .\* /r /z.zip /dT
- @echo off
- echo Since this is a demo the TODAY.ZIP will now be deleted.
- pause
- del today.zip
- @echo off
- echo Done. Press any key for next demonstration...
- pause>nul
-