fs__read_file
Reads the complete contents of a file as text. Supports optional head and tail to return specific line ranges.
Instructions
Read the complete contents of a file as text. DEPRECATED: Use read_text_file instead.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | ||
| tail | No | If provided, returns only the last N lines of the file | |
| head | No | If provided, returns only the first N lines of the file |