list_menus
Retrieves the complete menu structure from a Norton Guide database file, providing each menu's title, prompt strings, and corresponding guide offsets.
Instructions
Return the menu structure of a Norton Guide database file.
Each menu in the guide is returned as a dictionary describing its title, the list of prompt strings, and the guide offsets associated with each prompt.
Args: path: Absolute path to the .ng file.
Returns: A list of menu dictionaries. Each dictionary contains:
- ``title`` (str): The menu title.
- ``prompts`` (list[str]): The menu prompt strings.
- ``offsets`` (list[int]): The guide offset for each prompt.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 |