obsidian_list_files_in_dir
Explore and list all files and directories within a specific Obsidian vault folder to browse your Zettelkasten or organized content sections.
Instructions
List files and directories in a specific vault directory.
Use this tool to explore the contents of a specific folder, such as your
Zettelkasten directory or any other organized section of your vault.
Args:
params (ListFilesInput): Contains:
- dirpath (str): Relative path to directory (empty for root)
Returns:
str: Formatted list of directories and files in the specified path
Example:
For dirpath="Zettelkasten", lists all notes in your Zettelkasten folder.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Input Schema (JSON Schema)
{
"properties": {
"params": {
"$ref": "#/$defs/ListFilesInput"
}
},
"required": [
"params"
],
"type": "object"
}