webdav_get_directory_tree
Generate a recursive JSON tree structure of files and directories from a WebDAV server, with optional pattern-based exclusions for focused directory analysis.
Instructions
Get a recursive tree view of files and directories as a JSON structure
Input Schema
Name | Required | Description | Default |
---|---|---|---|
excludePatterns | No | Array of glob patterns to exclude from the tree | |
path | No | Root directory for the tree | / |
Input Schema (JSON Schema)
{
"properties": {
"excludePatterns": {
"default": [],
"description": "Array of glob patterns to exclude from the tree",
"items": {
"type": "string"
},
"type": "array"
},
"path": {
"default": "/",
"description": "Root directory for the tree",
"type": "string"
}
},
"type": "object"
}