Working with Zip Files in Elixir
Elixir File module does give an option to read compressed file, but I haven't really figured out how to use it. Erlang's standard libary does have zip
module is much easier to use. Let's see how:
I have two files (posts.json
and todos.json
) in two_files.zip
.
We can …