webdav_move_remote_item
Move or rename files or directories on a remote WebDAV server by specifying source and destination paths. Supports optional overwrite functionality.
Instructions
Move or rename a file or directory 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"
}