createZipFile

To create a zip archive including all files of a given file array

With this function, you create a zip archive containing all files passed in an array.

At the moment the function works only if it is executed server-side. More about execution context.

Syntax

createZipFile(nid, [file], string)

Return

file

Examples

createZipFile(record, files, filename) Creates a zip archive with all files of the array files and a given name.

let products := (select Products).photo
File := do as server createZipFile(this, products, "Products.zip") end

Result: The Products.zip zip archive containing all product photos from the Products table is saved in the File image field.

See also

createTextFile, which creates a text file with a given name and content.

Last updated