File archiver functions | zip >> |
res = unzip(zipname) |
res = unzip(zipname, rootdir) |
a string: zip archive filename.
a character vector or string scalar: root path for the files to decompress.
a cell array of character vectors containing the names of the files decompressed.
unzip extracts archived contents. Timestamps and attributes are preserved for each file.
zip([tempdir(), 'test.zip'], [nelsonroot(), '/module_skeleton']);
r = unzip([tempdir(), 'test.zip'], [tempdir(), createGUID()])
zip.
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET