webdav_create_remote_file
Create and save files on remote WebDAV servers by specifying paths and content; optionally overwrite existing files. Simplify remote file management with direct configuration.
Instructions
Create a new file on a remote WebDAV server at the specified path
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | ||
overwrite | No | ||
path | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"content": {
"type": "string"
},
"overwrite": {
"default": false,
"type": "boolean"
},
"path": {
"minLength": 1,
"type": "string"
}
},
"required": [
"path",
"content"
],
"type": "object"
}