The ones who are crazy enough to think they can change the world are the ones who do.- Steve Jobs
The Low level file IO is nothing but, the data is read or write to the file directly without the need of buffer. The Low level file IO functions use handles, so the data transfer speed is faster than high level IO functions. The following low level IO functions are defined in io.h header file.
The open() function is used to open a file. There are several modes to open a file.
open(filename, mode);
Open modes | Meaning |
---|---|
O_CREATE | opens a new file for writing |
O_WRONLY | open a file in write only mode |
O_RDONLY | open a file in read only mode |
O_RDWR | opens a file to read and write |
O_APPEND | open a file for appending |
O_BINARY | opens a file in a binary mode |
O_TEXT | used to create a text file |
O_TRUNC | opens a file for truncates a file |
The write() function is used to write data into a file.
write(int handle, void *buf, unsigned nbytes);
where, buf is the data area, nbytes referred as number of bytes to write into a file.
The read() function is used to read from a file.
read(int handle, void *buf, unsigned nbytes);
close(int handle);
We may make mistakes(spelling, program bug, typing mistake and etc.), So we have this container to collect mistakes. We highly respect your findings.
© Copyright 2019