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
81. Compressing and decompressing files to/from a ZIP archive with a password
Write a program that can do the following:
- Compress either a file or the contents of a user-specified directory, recursively, to a password-protected ZIP archive
- Decompress the content of a password-protected ZIP archive to a user-specified destination directory
82. Creating a PNG that represents a national flag
Write a program that generates a PNG file that represents the national flag of Romania...