Skip to content

Latest commit

 

History

History
165 lines (124 loc) · 7.91 KB

fdopen-wfdopen.md

File metadata and controls

165 lines (124 loc) · 7.91 KB
descriptiontitlems.dateapi_nameapi_locationapi_typetopic_typef1_keywordshelpviewer_keywordsms.assetid
Learn more about: _fdopen, _wfdopen
_fdopen, _wfdopen
05/18/2022
_fdopen
_wfdopen
_o__fdopen
_o__wfdopen
msvcrt.dll
msvcr80.dll
msvcr90.dll
msvcr100.dll
msvcr100_clr0400.dll
msvcr110.dll
msvcr110_clr0400.dll
msvcr120.dll
msvcr120_clr0400.dll
ucrtbase.dll
api-ms-win-crt-stdio-l1-1-0.dll
api-ms-win-crt-math-l1-1-0.dll
DLLExport
apiref
STDIO/_fdopen
CORECRT_WSTDIO/_wfdopen
TCHAR/_tfdopen
_fdopen
_wfdopen
_tfdopen
wfdopen
tfdopen
wfdopen function
_fdopen function
_wfdopen function
tfdopen function
fdopen function
_tfdopen function
streams, associating with files
262757ff-1e09-4472-a5b6-4325fc28f971

_fdopen, _wfdopen

Associates a stream with a file that was previously opened for low-level I/O.

Syntax

FILE*_fdopen( intfd, constchar*mode ); FILE*_wfdopen( intfd, constwchar_t*mode );

Parameters

fd
File descriptor of the open file.

mode
Type of file access.

Return value

Each of these functions returns a pointer to the open stream. A null pointer value indicates an error. When an error occurs, the invalid parameter handler is invoked, as described in Parameter validation. If execution is allowed to continue, errno is set either to EBADF, which indicates a bad file descriptor, or EINVAL, which indicates that mode was a null pointer.

For more information about these and other error codes, see errno, _doserrno, _sys_errlist, and _sys_nerr.

Remarks

The _fdopen function associates an I/O stream with the file that is identified by fd, and thus allows a file that is opened for low-level I/O to be buffered and formatted. _wfdopen is a wide-character version of _fdopen; the mode argument to _wfdopen is a wide-character string. _wfdopen and _fdopen otherwise behave identically.

File descriptors passed into _fdopen are owned by the returned FILE * stream. If _fdopen is successful, don't call _close on the file descriptor. Calling fclose on the returned FILE * also closes the file descriptor.

By default, this function's global state is scoped to the application. To change it, see Global state in the CRT.

The mode character string specifies the type of file access requested for the file:

modeAccess
"r"Opens for reading. If the file doesn't exist or can't be found, the fopen call fails.
"w"Opens an empty file for writing. If the given file exists, its contents are destroyed.
"a"Opens for writing at the end of the file (appending). Creates the file if it doesn't exist.
"r+"Opens for both reading and writing. The file must exist.
"w+"Opens an empty file for both reading and writing. If the file exists, its contents are destroyed.
"a+"Opens for reading and appending. Creates the file if it doesn't exist.

When a file is opened with the "a" or "a+" access type, all write operations occur at the end of the file. The file pointer can be repositioned by using fseek or rewind, but it's always moved back to the end of the file before any write operation is carried out. Thus, existing data can't be overwritten. When the "r+", "w+", or "a+" access type is specified, both reading and writing are allowed (the file is said to be open for "update"). However, when you switch between reading and writing, there must be an intervening fflush, fsetpos, fseek, or rewind operation. You can specify the current position for the fsetpos or fseek operation, if you want to.

In addition to the above values, the following characters can also be included in mode to specify the translation mode for newline characters:

mode modifierBehavior
tOpen in text (translated) mode. In this mode, carriage return-line feed (CR-LF) combinations are translated into one-line feeds (LF) on input, and LF characters are translated to CR-LF combinations on output. Also, Ctrl+Z is interpreted as an end-of-file character on input.
bOpen in binary (untranslated) mode. Any translations from t mode are suppressed.
cEnable the commit flag for the associated filename so that the contents of the file buffer are written directly to disk if either fflush or _flushall is called.
nReset the commit flag for the associated filename to "no-commit." This flag is the default. It also overrides the global commit flag if you link your program with Commode.obj. The global commit flag default is "no-commit" unless you explicitly link your program with Commode.obj.

The t, c, and nmode options are Microsoft extensions for fopen and _fdopen. Don't use them if you want to preserve ANSI portability.

If t or b isn't given in mode, the default translation mode is defined by the global variable _fmode. If t or b is prefixed to the argument, the function fails and returns NULL. For a discussion of text and binary modes, see Text and binary mode file I/O.

Valid characters for the mode string used in fopen and _fdopen correspond to oflag arguments used in _open and _sopen, as shown in this table:

Characters in mode stringEquivalent oflag value for _open and _sopen
a`_O_WRONLY
a+`_O_RDWR
r_O_RDONLY
r+_O_RDWR
w_O_WRONLY (usually `_O_WRONLY
w+_O_RDWR (usually `_O_RDWR
b_O_BINARY
t_O_TEXT
cNone
nNone

Requirements

FunctionRequired headerC++ header
_fdopen<stdio.h><cstdio>
_wfdopen<stdio.h> or <wchar.h><cstdio>

For more information on standards conformance and naming conventions in the C runtime library, see Compatibility.

Generic-text routine mappings

<tchar.h> routine_UNICODE and _MBCS not defined_MBCS defined_UNICODE defined
_tfdopen_fdopen_fdopen_wfdopen

Example

// crt_fdopen.c// This program opens a file by using low-level// I/O, then uses _fdopen to switch to stream// access. It counts the lines in the file.#include<stdlib.h>#include<stdio.h>#include<fcntl.h>#include<io.h>#include<share.h>intmain( void ) { FILE*stream; intfd, count=0; charinbuf[128]; // Open a file.if( _sopen_s( &fd, "crt_fdopen.txt", _O_RDONLY, _SH_DENYNO, 0 ) ) exit( 1 ); // Get stream from file descriptor.if( (stream=_fdopen( fd, "r" )) ==NULL ) exit( 1 ); while( fgets( inbuf, 128, stream ) !=NULL ) count++; // After _fdopen, close by using fclose, not _close.fclose( stream ); printf( "Lines in file: %d\n", count ); }

Input: crt_fdopen.txt

Line one Line two 

Output

Lines in file: 2 

See also

Stream I/O
_dup, _dup2
fclose, _fcloseall
fopen, _wfopen
freopen, _wfreopen
_open, _wopen

close