webdav_create_remote_directory
Generate a new directory on a remote WebDAV server by specifying the desired path, enabling organized file management and structured data storage.
Instructions
Create a new directory 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"
}