Site icon EfmSoft

What does NTSTATUS 0xC000003A (STATUS_OBJECT_PATH_NOT_FOUND) mean?

 
Previous Next
STATUS_OBJECT_PATH_INVALID STATUS_OBJECT_PATH_SYNTAX_BAD

STATUS_OBJECT_PATH_NOT_FOUND

STATUS_OBJECT_PATH_NOT_FOUND indicates that the lookup failed before Windows reached the final object name. In a file-system path, a parent directory may be missing; in a native object path, the missing component can belong to another namespace level or to the root directory used for relative resolution.

Why the distinction matters

This status is not interchangeable with STATUS_OBJECT_NAME_NOT_FOUND. When the final file name is absent but its parent exists, the latter is the more specific result. A path-not-found result instead points to a missing or unusable intermediate component. Network redirectors can also return it when a request relies on a feature such as a stream that the remote file system does not support.

What to inspect

The useful repair is usually to correct the namespace or provisioning state, not to retry the same request without changing anything.

See MRxCreate, NtCreateFile, and the NTSTATUS reference.


Looking for a different code? Search another status or error code.

Exit mobile version