Extract Compressed Files
Removes files from a .ZIP file to the given location. If the destination folder exists, it will be used to place the files. If there is no destination folder, one will be created. Each run of the object results in overwriting the existing files in the destination folder.
Privileges
Normal
Input Parameters
Name | Type | Required | Description |
---|---|---|---|
ZIP File Name | String | Yes | The full path of the .ZIP file to be extracted. |
Destination | String | Yes | The full path of the folder to copy the extracted files. |
Output Parameters
Name | Type | Description |
---|---|---|
Result | Number | Returns a success value of zero or any value other than zero to indicate failure. |
Example Input Parameters
Name | Type | Required | Example |
---|---|---|---|
ZIP File Name | String | Yes | C:\folder1\file1.zip |
Destination | String | Yes | C:\folder2 |