get_guide_info
Retrieve metadata from a Norton Guide database file, including title, credits, and file validation status.
Instructions
Return metadata for a Norton Guide database file.
Args: path: Absolute path to the .ng file.
Returns: A dictionary with the following keys:
- ``path`` (str): Resolved path to the guide.
- ``title`` (str): Guide title.
- ``credits`` (list[str]): Up to five credit lines.
- ``magic`` (str): Two-character magic marker (``"NG"`` or ``"EH"``).
- ``made_with`` (str): Tool used to build the guide.
- ``menu_count`` (int): Number of menus in the guide.
- ``file_size`` (int): File size in bytes.
- ``is_valid`` (bool): Whether the file is a recognised Norton Guide.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 |
|---|---|---|---|
No arguments | |||