Numerical Matrix Format
User Reference
UNCOMPRESS array

MATRIX Array Level: 1

The UNCOMPRESS array allows files and folders to be uncompressed (i.e Extracted).
Uncompress will automatically determine the source compression type based from file extension name (default: zip)

Note
RELATIVE paths are always preferred and much safer.
Fields in the UNCOMPRESS array
Description
SOURCE=FILE File location for the compressed file. The source path may be either Absolute or Relative. (Note: RELATIVE paths are always preferred and much safer).
DESTINATION=FOLDER Folder location for the resulting uncompressed file(s). The destination path may be either Absolute or Relative. (Note: RELATIVE paths are always preferred and much safer).
PASSWORD=VALUE Optional. Assign a case-sensative password.
NO_OVERWRITE Optional. Do not overwrite the Destination file(s). Default is Overwrite (existing destination files).
DELETE_SOURCE Optional. Remove source files after uncompress. Default is to keep source.


Example UNCOMPRESS Array:

# Uncompress all files from a file into a folder.
UNCOMPRESS {
SOURCE=PowerPointDino/Imports/AllImagesInOneFile.zip
DESTINATION=PowerPointDino/MyImages/
}
# Uncompress a .tgz file and place results in a backup folder.
UNCOMPRESS {
SOURCE=xyz corp/odbfiles/2354464.tgz
DESTINATION=CAM_OUT/Backup folder/
}