Need to download files in zip format

Hi,

I have list of files on UI which i want to download in zip folder.

What is the way out to implement this approach.

Kindly share me any code or any approach on this ?

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Lead Developer
    in reply to sauravk
    Why do we need this Documents Path

    The "Document Paths" input will determine the path and filename for the matching document from the "Documents to Add" array within the generated ZIP file only.  Therefore if you only want the documents to be at the "root level" of the zip file (the most common way), you would simply pass an array of the filenames.  This needs to include the file extension, i.e. {"file1.docx", "file2.docx"}, not {"file1", "file2"}.

    And for further clarification, if you wanted the files to be in a folder off the root of the zip file, let's say a top level folder called "Documents", you would pass this array: {"Documents\file1.docx", "Documents\file2.docx"}

Children
No Data