pub fn unzip_directory_listen<P: AsRef<Path>, F: FnMut(&str)>(
zip_file: P,
dest_dir: P,
listener: F,
) -> ZipResult<String>
Expand description
Unpack ZIP archive
Unpacks specified ZIP archive into a directory.
ยงArguments
zip_file
- Path to ZIP file to unpackdest_dir
- Destination directorylistener
- Function that is called for each entry read from archive