wordpress_list_files
List files in a WordPress directory to browse site structure, locate specific files, or manage content organization. Specify path and recursive search options.
Instructions
List files in a WordPress directory
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | ||
| recursive | Yes |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"type": "string"
},
"recursive": {
"type": "boolean"
}
},
"required": [
"path",
"recursive"
],
"type": "object"
}