Append to file
append_fileAppend content to existing files or create them if missing. Ideal for maintaining running logs, notes, or data collection without rewriting entire files.
Instructions
Appends content to an existing file, or creates the file if it does not exist. Use this to keep growing a running log or notes file.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | File path to append to | |
| content | Yes | Content to append (add your own newline if needed) |