Defined in header <stdio.h> | ||
---|---|---|
(1) | ||
FILE *freopen( const char *filename, const char *mode, FILE *stream ); | (until C99) | |
FILE *freopen( const char *restrict filename, const char *restrict mode, FILE *restrict stream ); | (since C99) | |
errno_t freopen_s(FILE *restrict *restrict newstreamptr, const char *restrict filename, const char *restrict mode, FILE *restrict stream); | (2) | (since C11) |
stream
, ignoring any errors. Then, if filename
is not null, attempts to open the file specified by filename
using mode
as if by fopen
, and associates that file with the file stream pointed to by stream
. If filename
is a null pointer, then the function attempts to reopen the file that is already associated with stream
(it is implementation defined which mode changes are allowed in this case).mode
is treated as in fopen_s
and that the pointer to the file stream is written to newstreamptr
and the following errors are detected at runtime and call the currently installed constraint handler function: newstreamptr
is a null pointer stream
is a null pointer mode
is a null pointer freopen_s
is only guaranteed to be available of __STDC_LIB_EXT1__
is defined by the implementation and if the user defines __STDC_WANT_LIB_EXT1__
to the integer constant 1
before including <stdio.h>
.filename | - | file name to associate the file stream to | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
mode | - | null-terminated character string determining new file access mode
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||
stream | - | the file stream to modify | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
newstreamptr | - | pointer to a pointer where the function stores the result (an out-parameter) |
stream
on success, null pointer on failure.stream
is written to *newstreamptr
, non-zero on error (and null pointer is written to *newstreamptr
unless newstreamptr
is itself a null pointer).freopen
is the only way to change the narrow/wide orientation of a stream once it has been established by an I/O operation or by fwide
.
The following code redirects stdout
to a file.
#include <stdio.h> #include <stdlib.h> int main(void) { puts("stdout is printed to console"); if (freopen("redir.txt", "w", stdout) == NULL) { perror("freopen() failed"); return EXIT_FAILURE; } puts("stdout is redirected to a file"); // this is written to redir.txt fclose(stdout); }
Output:
stdout is printed to console
(C11) | opens a file (function) |
closes a file (function) |
|
C++ documentation for freopen |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/c/io/freopen