Skip to content

Latest commit

 

History

History
151 lines (113 loc) · 9.09 KB

sopen-s-wsopen-s.md

File metadata and controls

151 lines (113 loc) · 9.09 KB
titledescriptionms.dateapi_nameapi_locationapi_typetopic_typef1_keywordshelpviewer_keywords
_sopen_s, _wsopen_s
Learn more about: _sopen_s, _wsopen_s
05/18/2022
_sopen_s
_wsopen_s
_o__sopen_s
_o__wsopen_s
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
DLLExport
apiref
CORECRT_IO/_sopen_s
CORECRT_WIO/_wsopen_s
TCHAR/_tsopen_s
_sopen_s
_wsopen_s
_tsopen_s
sopen_s
wsopen_s
sopen_s function
_wsopen_s function
wsopen_s function
opening files, for sharing
files [C++], opening
_sopen_s function
files [C++], sharing

_sopen_s, _wsopen_s

Opens a file for sharing. These versions of _sopen and _wsopen have security enhancements, as described in Security features in the CRT.

Syntax

errno_t_sopen_s( int*pfh, constchar*filename, intoflag, intshflag, intpmode ); errno_t_wsopen_s( int*pfh, constwchar_t*filename, intoflag, intshflag, intpmode );

Parameters

pfh
The file handle, or -1 if there's an error.

filename
File name.

oflag
The kind of operations allowed.

shflag
The kind of sharing allowed.

pmode
Permission setting.

Return value

A nonzero return value indicates an error; in that case errno is set to one of the following values.

errno valueCondition
EACCESThe given path is a directory, or the file is read-only, but an open-for-writing operation was attempted.
EEXIST_O_CREAT and _O_EXCL flags were specified, but filename already exists.
EINVALInvalid oflag, shflag, or pmode argument, or pfh or filename was a null pointer.
EMFILENo more file descriptors available.
ENOENTFile or path not found.

If an invalid argument is passed to the function, the invalid parameter handler is invoked, as described in Parameter validation. If execution is allowed to continue, errno is set to EINVAL, and EINVAL is returned.

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

If there's an error, -1 is returned through pfh (unless pfh is a null pointer).

Remarks

The _sopen_s function opens the file specified by filename and prepares the file for shared reading or writing, as defined by oflag and shflag. _wsopen_s is a wide-character version of _sopen_s; the filename argument to _wsopen_s is a wide-character string. _wsopen_s and _sopen_s behave identically otherwise.

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

Generic-text routine mappings

Tchar.h routine_UNICODE and _MBCS not defined_MBCS defined_UNICODE defined
_tsopen_s_sopen_s_sopen_s_wsopen_s

The integer expression oflag is formed by combining one or more manifest constants, which are defined in <fcntl.h>. When two or more constants form the argument oflag, they're combined with the bitwise-OR operator ( | ).

oflag constantBehavior
_O_APPENDMoves the file pointer to the end of the file before every write operation.
_O_BINARYOpens the file in binary (untranslated) mode. (See fopen for a description of binary mode.)
_O_CREATCreates a file and opens it for writing. Has no effect if the file specified by filename exists. The pmode argument is required when _O_CREAT is specified.
**`_O_CREAT_O_SHORT_LIVED`**
**`_O_CREAT_O_TEMPORARY`**
**`_O_CREAT_O_EXCL`**
_O_NOINHERITPrevents creation of a shared file descriptor.
_O_RANDOMSpecifies that caching is optimized for, but not restricted to, random access from disk.
_O_RDONLYOpens a file for reading only. Can't be specified with _O_RDWR or _O_WRONLY.
_O_RDWROpens a file for both reading and writing. Can't be specified with _O_RDONLY or _O_WRONLY.
_O_SEQUENTIALSpecifies that caching is optimized for, but not restricted to, sequential access from disk.
_O_TEXTOpens a file in ANSI text (translated) mode. (For more information, see Text and binary mode file I/O and fopen.)
_O_TRUNCOpens a file and truncates it to zero length; the file must have write permission. Can't be specified with _O_RDONLY. _O_TRUNC used with _O_CREAT opens an existing file or creates a file. Note: The _O_TRUNC flag destroys the contents of the specified file.
_O_WRONLYOpens a file for writing only. Can't be specified with _O_RDONLY or _O_RDWR.
_O_U16TEXTOpens a file in Unicode UTF-16 mode.
_O_U8TEXTOpens a file in Unicode UTF-8 mode.
_O_WTEXTOpens a file in Unicode mode.

To specify the file access mode, you must specify either _O_RDONLY, _O_RDWR, or _O_WRONLY. There's no default value for the access mode.

When a file is opened in Unicode mode by using _O_WTEXT, _O_U8TEXT, or _O_U16TEXT, input functions translate the data that's read from the file into UTF-16 data stored as type wchar_t. Functions that write to a file opened in Unicode mode expect buffers that contain UTF-16 data stored as type wchar_t. If the file is encoded as UTF-8, then UTF-16 data is translated into UTF-8 when it's written. The file's UTF-8-encoded content is translated into UTF-16 when it's read. An attempt to read or write an odd number of bytes in Unicode mode causes a parameter validation error. To read or write data that's stored in your program as UTF-8, use a text or binary file mode instead of a Unicode mode. You're responsible for any required encoding translation.

If _sopen_s is called with _O_WRONLY | _O_APPEND (append mode) and _O_WTEXT, _O_U16TEXT, or _O_U8TEXT, it first tries to open the file for reading and writing, read the BOM, then reopen it for writing only. If opening the file for reading and writing fails, it opens the file for writing only and uses the default value for the Unicode mode setting.

The argument shflag is a constant expression that consists of one of the following manifest constants, which are defined in <share.h>.

shflag constantBehavior
_SH_DENYRWDenies read and write access to a file.
_SH_DENYWRDenies write access to a file.
_SH_DENYRDDenies read access to a file.
_SH_DENYNOPermits read and write access.

The pmode argument is always required, unlike in _sopen. When you specify _O_CREAT, if the file doesn't exist, pmode specifies the file's permission settings, which are set when the new file is closed the first time. Otherwise, pmode is ignored. pmode is an integer expression that contains one or both of the manifest constants _S_IWRITE and _S_IREAD, which are defined in <sys\stat.h>. When both constants are given, they're combined with the bitwise-OR operator. The meaning of pmode is as follows.

pmodeMeaning
_S_IREADOnly reading permitted.
_S_IWRITEWriting permitted. (In effect, permits reading and writing.)
**`_S_IREAD_S_IWRITE`**

If write permission isn't given, the file is read-only. In the Windows operating system, all files are readable; it isn't possible to give write-only permission. Therefore, the modes _S_IWRITE and _S_IREAD | _S_IWRITE are equivalent.

_sopen_s applies the current file-permission mask to pmode before the permissions are set. (See _umask.)

Requirements

FunctionRequired headerOptional header
_sopen_s<io.h><fcntl.h>, <sys\types.h>, <sys\stat.h>, <share.h>
_wsopen_s<io.h> or <wchar.h><fcntl.h>, <sys/types.h>, <sys/stat.h>, <share.h>

_sopen_s and _wsopen_s are Microsoft extensions. For more compatibility information, see Compatibility.

Example

See the example for _locking.

See also

Low-level I/O
_close
_creat, _wcreat
fopen, _wfopen
_fsopen, _wfsopen
_open, _wopen

close