Currently if I need to unzip a folder, I'll have to write:
r = ZipFile.Reader("/tmp/example.zip");
for f in r.files
println("Filename: \$(f.name)")
write(stdout, read(f, String));
end
Instead, there can be a ZipFile.unzip("/tmp/example.zip") which will place all the data in /tmp/example directory and return me the path of the directory.
Currently if I need to unzip a folder, I'll have to write:
Instead, there can be a
ZipFile.unzip("/tmp/example.zip")which will place all the data in/tmp/exampledirectory and return me the path of the directory.