copy_items
Copies multiple files or directories from specified sources to destinations in a TypeScript-based filesystem, using a defined array of source-destination pairs.
Instructions
Copy multiple specified files/directories.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
operations | Yes | Array of {source, destination} objects. |
Input Schema (JSON Schema)
{
"properties": {
"operations": {
"description": "Array of {source, destination} objects.",
"items": {
"properties": {
"destination": {
"description": "Relative path of the destination.",
"type": "string"
},
"source": {
"description": "Relative path of the source.",
"type": "string"
}
},
"required": [
"source",
"destination"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"operations"
],
"type": "object"
}