webdav_search_files
Search WebDAV file systems using glob patterns to find specific files and directories, with exclusion options to filter results.
Instructions
Search for files and directories using glob patterns with exclusion support
Input Schema
Name | Required | Description | Default |
---|---|---|---|
excludePatterns | No | Array of glob patterns to exclude from search results | |
path | No | Starting directory for the search | / |
pattern | Yes | Glob pattern to match files (e.g., "*.txt", "**/*.js", "config.*") |
Input Schema (JSON Schema)
{
"properties": {
"excludePatterns": {
"default": [],
"description": "Array of glob patterns to exclude from search results",
"items": {
"type": "string"
},
"type": "array"
},
"path": {
"default": "/",
"description": "Starting directory for the search",
"type": "string"
},
"pattern": {
"description": "Glob pattern to match files (e.g., \"*.txt\", \"**/*.js\", \"config.*\")",
"type": "string"
}
},
"required": [
"pattern"
],
"type": "object"
}