webdav_update_remote_file
Update existing files on remote WebDAV servers by replacing their content with new data while maintaining the same file path and structure.
Instructions
Update an existing file on a remote WebDAV server with new content
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | ||
path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"type": "string"
},
"path": {
"minLength": 1,
"type": "string"
}
},
"required": [
"path",
"content"
],
"type": "object"
}