create_file
Create a new file at a specified path, with optional initial content, ability to overwrite existing files, and automatic creation of parent directories.
Instructions
Create a new file with optional content
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Path to the new file | |
| content | No | Initial content for the file | |
| overwrite | No | Overwrite if file exists | |
| createDirs | No | Create parent directories if they don't exist |