What does Windows error code 132 (ERROR_SEEK_ON_DEVICE) mean?

 
Could be also:
ConstantTypeOS
ENOBUFSerrnoSolaris
EOVERFLOWerrnoWindows
RECOM_DRIVERBugCheck CodeWindows
Previous Next
ERROR_NEGATIVE_SEEK ERROR_IS_JOIN_TARGET

ERROR_SEEK_ON_DEVICE

The stream is not seekable

ERROR_SEEK_ON_DEVICE means the caller requested random access on a handle whose underlying object supports only sequential I/O. Pipes, consoles, sockets, and some device interfaces are common examples.

Checks

  • Determine the object type behind the handle.
  • Do not assume every HANDLE represents a disk file.
  • Check capability before using file-position APIs.
  • Buffer sequential input explicitly when later repositioning is required.

Resolution

Use a sequential processing path or copy the data to seekable storage before random access.

References


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