decompress
Extract contents from a local ZIP file to a specified directory, with options to include password protection, overwrite files, and create directories.
Instructions
Decompress local ZIP file to specified directory
Input Schema
Name | Required | Description | Default |
---|---|---|---|
input | Yes | ||
options | No | ||
output | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"input": {
"type": "string"
},
"options": {
"additionalProperties": false,
"properties": {
"createDirectories": {
"type": "boolean"
},
"overwrite": {
"type": "boolean"
},
"password": {
"type": "string"
}
},
"type": "object"
},
"output": {
"type": "string"
}
},
"required": [
"input",
"output"
],
"type": "object"
}