Problems
79. Finding files in a ZIP archive
Write a program that can search for and print all the files in a ZIP archive whose name matches a user-provided regular expression (for instance, use ^.*\.jpg$ to find all files with the extension .jpg).
80. Compressing and decompressing files to/from a ZIP archive
Write a program that can do the following:
- Compress either a file or the contents of a user-specified directory, recursively, to a ZIP archive
- Decompress the contents of a ZIP archive to a user-specified destination directory