Description |
 |
The write() function attempts to writes nbyte bytes from the buffer pointed to by buffer to the open file associated with the open file descriptor fildes.
On a file capable of seeking, write() starts from the current file offset position. Before successful return from write(), the file offset is incremented by the number of bytes actually written. If the incremented file offset is greater than the EOF of the file, the EOF of the file is set to the new file offset.
If the O_APPEND file status flag is set, the file offset is set to the end of the file prior to each write.
On a file not capable of seeking, write() starts from the current position. (The file offset for such a file is undefined.)
Upon successful completion, the write() function returns the actual number of bytes written to the file and, if nbyte is greater than 0, marks for update the st_ctime and st_mtime time fields of the file.
If write() requests that more bytes be written than there
is room for (for example, the physical end of medium), only as many bytes as there is room for are written. In this case, the next write to the file of a nonzero number of bytes fails, and an error is returned.
If nbytes is zero, the write() function writes zero bytes of data. In this case, the file offset position is not changed and no time fields are marked for update.
Implementation Considerations |
 |
Refer to the EFBIG, EFAULT, EIMPL, and ESYSERR error descriptions below.
Signals generated for the calling process during execution of write() are deferred from delivery until completion of this function.
See Also |
 |
creat(), dup(), lseek(), open(), POSIX.1 (Section 6.4.2)