listNotes
Generate a tree-format list of files and folders in your Obsidian vault or a specific directory, enabling structured organization and access to notes.
Instructions
Recursively lists files and folders in the entire Vault or under a specified folder and returns the result as a tree-format string
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | No | Optional folder path to list notes from |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"path": {
"description": "Optional folder path to list notes from",
"type": "string"
}
},
"type": "object"
}