Zip Component

Provides utility methods for working with zip files
Component key: zip#
DescriptionThe Zip component helps with handling and manipulating .zip
files.
#
Actions#
Compress GzipCompress Gzip file | key: compressGzip
Input | Notes |
---|---|
Input File Data data / Required | Notes File to Gzip compress |
#
Decompress GzipDecompress Gzip file | key: decompressGzip
Input | Notes |
---|---|
Input Gzip File Data data / Required | Notes Gzip data to decompress |
#
UnzipDecompress a Zip file | key: unzip
Input | Notes |
---|---|
Input Zip File Data data / Required | Notes Zip data to decompress |
#
Output Example Payload{ "data": [ { "name": "filename.txt", "data": { "data": { "type": "Buffer", "data": [ 104, 101, 108, 108, 111 ] }, "contentType": "text/plain" }, "path": "path/" } ]}
#
ZipCompress a Zip file | key: zip
Input | Notes |
---|---|
Input Files data / Required | Notes Files to include in the Zip; should be an object with filename keys and values containing file contents |
Collection Tools has useful utilities for building up data to provide to the Zip action.
#
Output Example Payload{ "data": { "type": "Buffer", "data": [ 104, 101, 108, 108, 111 ] }, "contentType": "application/zip"}