<< unzip | File archiver functions |
res = zip(zipname, files) |
res = zip(zipname, files, rootdir) |
a string: zip archive destination file.
a character vector, a cell array of character vectors, or a string array: Names of files or folders to compress.
a character vector or string scalar: root path for the files to compress.
a cell array of character vectors containing the names of the files included in zip archive.
zip compress files and directories into zip archive.
Each individual file must be smaller than 4 GB.
Number of files specified must be less than 65535.
zip([tempdir(), 'test.zip'], [nelsonroot(), '/module_skeleton'])
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET