SYNOPSIS
#include <stdio.h>
FILE *freopen(const char *filename, const char *type, FILE *stream);
FILE *freopen64(const char *filename, const char *type, FILE *stream);
DESCRIPTION
The
The
The original stream is closed regardless of whether the subsequent open succeeds.
The
When a stream is opened, it is fully buffered only if it does not refer to an interactive device.
The
PARAMETERS
- filename
-
Points to the name of the file.
- type
-
Indicates a character string that specifies the desired type of file access. The first character of this string must be one of r (open for reading), w (open for writing), or a (open for writing at the end of file —append).
After the first character, you several optional modifiers: b, open in binary mode; t, open in text mode, +, open for update (both reading and writing); S, optimize performance for sequential access; R, optimize performance for random access; D, file should be deleted when the last file descriptor is closed; T, optimize performance for short-lived temporary files.
- stream
-
Points to the stream to be mapped to a file descriptor.
RETURN VALUES
On failure, the
- EACCES
-
Search permission is denied on a component of the path prefix, or the file exists and the permissions specified by mode are denied, or the file does not exist and write permission is denied for the parent directory of the file to be created.
- EINTR
-
A signal interrupted the call.
- EINVAL
-
The value of the type argument is invalid.
- EISDIR
-
The named file is a directory, and type requires write access.
- EMFILE
-
Too many file descriptors are open in the calling process.
- ENOENT
-
A component of filename does not name an existing file, or filename is an empty string.
- ENOMEM
-
Insufficient storage space is available.
- ENOSPC
-
The directory or file system that would contain the new file cannot be expanded, the file does not exist and it was to be created.
- ENOTDIR
-
A component of the path prefix is not a directory.
- EOVERFLOW
-
The named file is a regular file and the size of the file cannot be represented correctly in an object of type off_t.
- ETXTBSY
-
The file is an executable that is in use, and type requires write access.
CONFORMANCE
ANSI/ISO 9899-1990 with exceptions.
MULTITHREAD SAFETY LEVEL
MT-Safe.
PORTING ISSUES
The modifiers D, T, R, S,
and t are PTC MKS Toolkit UNIX APIs extensions, and are not guaranteed to
be portable.
If neither b nor t is specified, the determination
of binary or text is made by examining the current state of the
BINARY_OFLAG (see
AVAILABILITY
PTC MKS Toolkit for Professional Developers
PTC MKS Toolkit for Professional Developers 64-Bit Edition
PTC MKS Toolkit for Enterprise Developers
PTC MKS Toolkit for Enterprise Developers 64-Bit Edition
SEE ALSO
- Miscellaneous:
- lf64
PTC MKS Toolkit 10.4 Documentation Build 39.