fdopen - Open file descriptor
fdopen() is a standard input output library function to associate an file descriptor to an FILE pointer. Fopen C stdio call or open() system call can be used to open a file descriptor.Parameters
Like fopen() it also takes two arguments. First argument is file descriptor. Second argument is the mode. There are largely three modes of opening a file. They are "read" ("r"), "write" ("w") and "append" ("a"). File can be in the form of "text" file or "binary" ("b") file.Syntax
Return
fdopen returns a pointer to a FILE context structure which contains file descriptor and file buffer details. If there are not enough permissions then fdopen() may fail and a NULL pointer is returned.Opening file for reading:
Opening an existing file can be done in read mode. Read in text mode "r" or read binary "rb" can be other optionAppending an existing file:
We often require to write some new content at the end of existing file. Append mode is the preferred choice.Creating a new File:
Write mode is used to create a new file. If file is already there the file will be truncated to zero bytes and new content will be overwritten.About our authors: Team EQA
You have viewed 1 page out of 252. Your C learning is 0.00% complete. Login to check your learning progress.