Skip to content

ZIP Extract

Type: zip-extract  ·  Package: ZIP Activities v1.0.0  ·  Output: string

Extracts the contents of a ZIP file to a destination folder. Returns the path of the folder where it was extracted. Useful for processing files that arrive compressed (an email with a ZIP of invoices).

Decompress the ZIP of source into destination. By default it overwrites files that already exist.

ParameterEditorDescription
sourceexpressionPath of the ZIP file to extract.
destinationexpressionFolder where to extract the content.
ParameterEditorDescription
overwritebooleanSobrescribir archivos existentes. Por defecto true.

Returns a string with the path of the destination folder.

Extract a ZIP and process your files:

ZIP Extract source = = rutaZip destination = "C:/temp/extraido"
List Files path = "C:/temp/extraido" pattern = "*.xlsx" → output: archivos
For Each items = = archivos itemVariable = ruta
└─ activities:
Read Excel Sheet path = = ruta → output: datos
... procesar ...