write_file
Creates a new file or overwrites an existing file with provided text content. Specify the path and content to write data to disk.
Instructions
Create a new file or overwrite an existing file with text content.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Path to the file to create or overwrite | |
| content | Yes | Text content to write into the file | |
| overwrite | No | Whether to overwrite if file exists (default: true) |