webdav_get_remote_file
Access and retrieve file content from a remote WebDAV server by specifying the file path, enabling integration with natural language commands for file management.
Instructions
Retrieve content from a file stored on a remote WebDAV server
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"path": {
"minLength": 1,
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}