webdav_copy_remote_item
Copy files or directories between locations on a remote WebDAV server, supporting optional overwrite functionality for existing items.
Instructions
Copy a file or directory to a new location on a remote WebDAV server
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fromPath | Yes | ||
overwrite | No | ||
toPath | Yes |
Input Schema (JSON Schema)
{
"properties": {
"fromPath": {
"minLength": 1,
"type": "string"
},
"overwrite": {
"default": false,
"type": "boolean"
},
"toPath": {
"minLength": 1,
"type": "string"
}
},
"required": [
"fromPath",
"toPath"
],
"type": "object"
}