Has someone maybe a good source where all available file operations like fopen, fread, mkdir, etc are described? When I am googleing for Linux file operations most pages explain me how the filesystem hierarchy looks like.
|
1
|
|||
|
|
|
There a several file operations APIs on different levels of the stack, e.g. POSIX API, Standard C API, Linux VFS API (as Jeremy mentioned), and the FUSE API. All the APIs do more or less the same thing, but the details are very different.
These two APIs are the most important for the normal user. A good book about the topic is "Advanced Programming in the UNIX Environment" by Stevens and Rago |
||
|
|
|
|
use Alternatively, if you search a browseable version of this man pages, you can try here |
||
|
|
|
|
The functions you're asking about actually fall under several categories - file stream I/O ( For an overview of file stream I/O functions, see For searching Google, try "posix file api" instead of "linux file operations." You can also check the GNU C Libary Manual: |
||||
|
|
|
I 'm not sure if this helps, but this is directly out of the kernel source:
Filesystems generally register all their implementations to these callbacks. |
||||||||
|
|
|
Yep -- use the man pages. |
||
|
