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.
- define EPERM 1
- define ENOENT 2
- define ESRCH 3
- define EINTR 4
- define EIO 5
- define ENXIO 6
- define E2BIG 7
- define ENOEXEC 8
- define EBADF 9
- define ECHILD 10
- define EAGAIN 11
- define ENOMEM 12
- define EACCES 13
- define EFAULT 14
- define EBUSY 16
- define EEXIST 17
- define EXDEV 18
- define ENODEV 19
- define ENOTDIR 20
- define EISDIR 21
- define ENFILE 23
- define EMFILE 24
- define ENOTTY 25
- define EFBIG 27
- define ENOSPC 28
- define ESPIPE 29
- define EROFS 30
- define EMLINK 31
- define EPIPE 32
- define EDOM 33
- define EDEADLK 36
- define ENAMETOOLONG 38
- define ENOLCK 39
- define ENOSYS 40
- 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
Enable comment auto-refresher