File Append mode
Write mode either overwrites the existing file or creates a new one if the file is non-existent. Append mode opens the file and sets the file pointer/cursor to the end of the file so that any write operation may start from the very end of that file. It cannot overwite an existing file.
fopen() Syntax
#include <stdio.h> FILE *fopen(const char *path, const char *mode); FILE *fdopen(int fd, const char *mode); FILE *freopen(const char *path, const char *mode, FILE *stream); FILE *fp = fopen(<path>, "a"); FILE *fp = fopen(<path>, "a+");
fopen() DESCRIPTION
The fopen() function opens the file whose name is the string pointed to by path and associates a stream with it. The argument mode points to a string beginning with one of the following sequences (possibly followed by additional characters, as described below): "r" Open text file for reading. The stream is positioned at the beginning of the file. "r+" Open for reading and writing. The stream is positioned at the beginning of the file. "w" Truncate file to zero length or create text file for writing. The stream is positioned at the beginning of the file. "w+" Open for reading and writing. The file is created if it does not exist, otherwise it is truncated. The stream is positioned at the beginning of the file. "a" Open for appending (writing at end of file). The file is created if it does not exist. The stream is positioned at the end of the file. "a+" Open for reading and appending (writing at end of file). The file is created if it does not exist. The initial file position for reading is at the beginning of the file, but output is always appended to the end of the file. The mode string can also include the letter 'b' either as a last character or as a character between the characters in any of the two- character strings described above. This is strictly for compatibility with C89 and has no effect; the 'b' is ignored on all POSIX conforming systems, including Linux. (Other systems may treat text files and binary files differently, and adding the 'b' may be a good idea if you do I/O to a binary file and expect that your program may be ported to non-UNIX environments.) Opening a file in append mode (a as the first character of mode) causes all subsequent write operations to this stream to occur at end-of-file, as if preceded the call: fseek(stream, 0, SEEK_END);
Append mode with fread and fwrite
We can mimic the operation of append mode in a C program using the following steps:
- open the file in read mode
- read the size attribute
- copy the entire file into buffer
- Open file in write mode
- Write existing buffer
- append new buffer
- close the file
Append mode example
Append mode is used to open a file and jump to the last location for further writing or appending new contents.
Logging modules are the best examples. Syslog, windows event logger are live examples where files are opened in append mode. A simple application like Putty, application servers or GUI based applications can log critical data and errors in log file in the background.
Now lets understand this small logger application. This takes a line from user and appends the timestamp and the text in the log file.
Fopen append output
$ gcc logging.c -o logging $ sudo ./logging Enter text to add in log file : This is a sample text in log 1 Enter text to add in log file : This is a sample text in log 2 Enter text to add in log file : quit $ sudo cat /var/log/logger.log Sat May 9 15:17:06 2020 This is a sample text in log 1 Sat May 9 15:17:18 2020 This is a sample text in log 2 $
File append using fdopen
Fdopen append output
$ gcc fdopen.c -o fdopen $ sudo ./fdopen log file : Enter text to append to : this text to append 1 $ sudo ./fdopen log file : Sat Oct 10 18:32:07 2020 this text to append 1 Enter text to append to : this text to append 2 $ sudo ./fdopen log file : Sat Oct 10 18:32:07 2020 this text to append 1 Sat Oct 10 18:32:23 2020 this text to append 2 Enter text to append to : quit $
File append using freopen
Freopen append output
$ gcc freopen.c -o freopen $ sudo ./freopen log file : Sat Oct 10 18:32:07 2020 this text to append 1 Sat Oct 10 18:32:23 2020 this text to append 2 Sat Oct 10 18:33:12 2020 Enter text to append to : this text to appen 3 $ sudo ./freopen log file : Sat Oct 10 18:32:07 2020 this text to append 1 Sat Oct 10 18:32:23 2020 this text to append 2 Sat Oct 10 18:33:12 2020 Sat Oct 10 18:37:01 2020 this text to appen 3 Enter text to append to : quit $
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.