Error Messages/43738


Example error message

A disk write error occurred in Function WriteBinaryFile. The errno code of the error is 2.

Cause

When it was writing to the disk, an error condition was reported, so that the write operation was not able to be carried out.

Use the following listing to find the symbolic name corresponding to the error number that displays.

  1. define EPERM 1
  2. define ENOENT 2
  3. define ESRCH 3
  4. define EINTR 4
  5. define EIO 5
  6. define ENXIO 6
  7. define E2BIG 7
  8. define ENOEXEC 8
  9. define EBADF 9
  10. define ECHILD 10
  11. define EAGAIN 11
  12. define ENOMEM 12
  13. define EACCES 13
  14. define EFAULT 14
  15. define EBUSY 16
  16. define EEXIST 17
  17. define EXDEV 18
  18. define ENODEV 19
  19. define ENOTDIR 20
  20. define EISDIR 21
  21. define ENFILE 23
  22. define EMFILE 24
  23. define ENOTTY 25
  24. define EFBIG 27
  25. define ENOSPC 28
  26. define ESPIPE 29
  27. define EROFS 30
  28. define EMLINK 31
  29. define EPIPE 32
  30. define EDOM 33
  31. define EDEADLK 36
  32. define ENAMETOOLONG 38
  33. define ENOLCK 39
  34. define ENOSYS 40
  35. define ENOTEMPTY 41


Consult the page errno Constants to find out what the code means.

Remedy

Remedy the error according to the error type in the Microsoft error code listing.

See Also

Comments


You are not allowed to post comments.