list_entries
Retrieve a summary of all entries in a Norton Guide .ng file, including byte offset, entry type, line count, and first line content.
Instructions
List all entries in a Norton Guide database file.
Args: path: Absolute path to the .ng file.
Returns: A list of entry summary dictionaries. Each dictionary contains:
- ``offset`` (int): Byte offset of the entry within the guide.
- ``type`` (str): Entry type — ``"short"`` or ``"long"``.
- ``line_count`` (int): Number of lines in the entry.
- ``first_line`` (str): Plain-text content of the first line, or an
empty string if the entry contains no lines.Raises: FileNotFoundError: If path does not point to an existing file.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |