errors.fyi community error code reference
os.ErrNotExist
go

File Does Not Exist

File or directory does not exist. Wraps the underlying OS error (ENOENT on Unix). Use errors.Is(err, os.ErrNotExist) rather than comparing directly.

References

โ† all namespaces for os.ErrNotExist