I want to know the difference between a file descriptor and file pointer.
Also, in what scenario would you use one instead of the other?
|
I want to know the difference between a file descriptor and file pointer. Also, in what scenario would you use one instead of the other?
| ||||
|
feedback
|
|
A file descriptor is a low-level integer "handle" used to identify an opened file (or socket, or whatever) at the kernel level, in Linux and other Unix-like systems. You pass "naked" file descriptors to actual Unix calls, such as A You pass | |||||
feedback
|
|
One is buffered ( You can get the file descriptor from the | ||||
feedback
|
|
A file descriptor is just an integer which you get from the Posix' So using There are no performance issues using either or. | |||
feedback
|
|
What is difference between file descriptor and file pointer - C http://www.daniweb.com/forums/thread98191.html file descriptor and file pointer [Archive] - http://answers.yahoo.com/question/index?qid=20090209003227AAEQsI4 what's difference between fd and fp? http://cboard.cprogramming.com/c-programming/90357-whats-difference-between-fd-fp.html | ||||
|
feedback
|
| ||||
|
feedback
|
|
File descriptor API is low-level, so it allows to work with sockets, pipes, memory-mapped files (and regular files, of course). | ||||
|
feedback
|