obsidian_append_to_file
Append text to a specified file in your Obsidian vault, creating it if missing. Enables efficient content updates and data integration within your vault.
Instructions
Append content to a new or existing file in the vault.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | Content to append to the file | |
filepath | Yes | Path to the file (relative to vault root) |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "Content to append to the file",
"type": "string"
},
"filepath": {
"description": "Path to the file (relative to vault root)",
"format": "path",
"type": "string"
}
},
"required": [
"filepath",
"content"
],
"type": "object"
}