Search code examples
cfileposixfile-descriptor

Difference between fclose and close


If I fopen a file, what's the difference between calling fclose or close and which one should I use?

If forked children have access to the file as well, what should they do when they are finished with the file?


Solution

  • fclose() is function related with file streams. When you open file with the help of fopen() and assign stream to FILE *ptr. Then you will use fclose() to close the opened file.

    close() is a function related with file descriptors. When you open file with the help of open() and assign descriptor to int fd. Then you will use close() to close the opened file.

    The functions like fopen(), fclose() etc are C standard functions, while the other category of open(), close() etc are POSIX-specific. This means that code written with open(), close() etc is not a standard C code and hence non-portable. Whereas the code written with fopen(), fclose etc is a standard code and can be ported on any type of system.

    which one should I use?

    It depends on how you opened the file. If you open a file with fopen(), you should use fclose() and if you open file with open(), you should use close().

    If forked children have access to the file as well, what should they do when they are finished with the file?

    This is also dependent on where you made the fork() call: before opening the file or after opening it.

    See: Are file descriptors shared when fork()ing?

    See: man fclose and man close