freopen, _wfreopen

De RAD Studio
Aller à : navigation, rechercher

Remonter à Stdio.h - Index


Header File

stdio.h

Category

Input/output Routines

Prototype

FILE *freopen(const char *filename, const char *mode, FILE *stream);

FILE *_wfreopen(const wchar_t *filename, const wchar_t *mode, FILE *stream);

Description

Associates a new file with an open stream.

freopen substitutes the named file in place of the open stream. It closes stream regardless of whether the open succeeds. freopen is useful for changing the file attached to stdin, stdout, or stderr.

The mode string used in calls to fopen is one of the following values:

r Open for reading only. w Create for writing. . a Append; open for writing at end-of-file or create for writing if the file does not exist. r+ Open an existing file for update (reading and writing). w+ Create a new file for update (reading and writing). a+ Open for append; open (or create if the file does not exist) for update at the end of the file.



To specify that a given file is being opened or created in text mode append a t to the mode string (rt w+t and so on); similarly to specify binary mode append a b to the mode string (wb a+b and so on).

If a t or b is not given in the mode string the mode is governed by the global variable _fmode. If _fmode is set to O_BINARY files are opened in binary mode. If _fmode is set to O_TEXT they are opened in text mode. These O_... constants are defined in fcntl.h.

When a file is opened for update, both input and output can be done on the resulting stream; however,

  • output cannot be directly followed by input without an intervening fseek or rewind
  • input cannot be directly followed by output without an intervening fseek, rewind, or an input that encounters end-of-file

Return Value

On successful completion freopen returns the argument stream.

On error it returns NULL.

Example



 #include <stdio.h>
 int main(void)
 {
    /* redirect standard output to a file */
    if (freopen("OUTPUT.FIL", "w", stdout)
        == NULL)
       fprintf(stderr, "error redirecting stdout\n");
    /* this output will go to a file */
    printf("This will go into a file.");
    /* close the standard output stream */
    fclose(stdout);
    return 0;
 }



Portability



POSIX Win32 ANSI C ANSI C++

freopen

+

+

+

+

_wfreopen

NT only