create_text_file
Create a new text file at an absolute path with specified content. Ensures the file does not already exist to prevent overwriting.
Instructions
Create a new text file with given content. The file must not exist already.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| contents | Yes | Content to write to the file | |
| encoding | No | Text encoding (default: 'utf-8') | utf-8 |
| file_path | Yes | Path to the text file. File path must be absolute. |