webdav_copy_remote_item
Copy files or directories to a new location on a remote WebDAV server, allowing controlled overwrite options for efficient file management.
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)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"fromPath": {
"minLength": 1,
"type": "string"
},
"overwrite": {
"default": false,
"type": "boolean"
},
"toPath": {
"minLength": 1,
"type": "string"
}
},
"required": [
"fromPath",
"toPath"
],
"type": "object"
}