Purpose
Read a zip file

GuiXT has no built-in support for zip files, so you need to call a JavaScript , VBScript or VB.NET function. Here we show the JavaScript solution.
Solution

GuiXT
// unzip the file into a temporary folder
CallJS tempfolder = "unzip" "C:\guixt\sample.zip" "&%[TEMP]"

// display test message with content of target directory
CopyText fromDirectory="&V[tempfolder]" toText="msg"
Message "&text[msg]"

JavaScript function
JavaScript

Components
InputAssistant