webdav_update_remote_file
Update content of an existing file on a remote WebDAV server by specifying the file path and new content using this tool for streamlined file management.
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)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"content": {
"type": "string"
},
"path": {
"minLength": 1,
"type": "string"
}
},
"required": [
"path",
"content"
],
"type": "object"
}