What does NTSTATUS 0xC01C0014 (STATUS_FLT_VOLUME_NOT_FOUND) mean?

 
Previous Next
STATUS_FLT_FILTER_NOT_FOUND STATUS_FLT_INSTANCE_NOT_FOUND

STATUS_FLT_VOLUME_NOT_FOUND

STATUS_FLT_VOLUME_NOT_FOUND means that the volume identifier could not be resolved to a Filter Manager volume object at that moment. It does not prove that the physical disk failed, nor does it mean that a filter exists on a different volume.

Use a stable volume identity and account for mount and dismount races. Drive letters can be absent or reassigned, while a volume GUID path and a Filter Manager enumeration describe the object actually visible to the filtering stack. Refresh the volume reference instead of keeping an opaque pointer after a dismount boundary.

Compare nearby results

  • Volume not found: no current Filter Manager volume object matched.
  • Instance not found: the volume exists, but the requested filter attachment does not.
  • Deleting object: the object is known but teardown has already started.

Filter Manager API overview | Filter Manager concepts | NTSTATUS reference


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