Compress files and/or folders into a single zip file
createZipFile(zipFile, files, rootFolder = getwd(), compressionLevel = 9)
The path to the zip file to be created.
The files and/or folders to be included in the zip file. Folders will be included recursively.
The root folder. All files will be stored with relative paths relative to this folder.
A number between 1 and 9. 9 compresses best, but it also takes the longest.
Uses Java's compression library to create a zip file. It is similar to utils::zip
, except
that it does not require an external zip tool to be available on the system path.