Skip to content

Z104: FILE_NOT_FOUND

Severity: error Penalty: 8.0 points Category: structural Auto-fixable: No

Rationale

This rule is emitted when a document references a local binary or image asset (such as a PDF, ZIP archive, or PNG file) using a relative path, but the file is missing from the local workspace filesystem.

How to Fix

Inspect the flagged location in the Markdown file and update the content or configuration:

Bad (Triggers Z104)

<!-- BAD: Image asset file missing on disk -->
![System Topology](../assets/diagrams/topology-v2.png)

Good (Resolves Z104)

<!-- GOOD: Referenced image asset exists on disk -->
![System Topology](../assets/diagrams/topology.png)

Configuration

# .zenzic.toml - Set relative docs root directory
docs_dir = "docs"

Reference

See the Finding Codes Index for finding code details.