_sopen, _wsopen
Opens a file for sharing. More secure versions of these functions are available; see _sopen_s, _wsopen_s.
int _sopen( const char *filename, int oflag, int shflag [, int pmode ] ); int _wsopen( const wchar_t *filename, int oflag, int shflag [, int pmode ] );
Each of these functions returns a file descriptor for the opened file.
If filename or oflag is a NULL pointer, or if oflag or shflag is not within a valid range of values, the invalid parameter handler is invoked, as described in Parameter Validation. If execution is allowed to continue, these functions return -1 and set errno to one of the following values.
For more information about these and other return codes, see _doserrno, errno, _sys_errlist, and _sys_nerr.
The _sopen function opens the file specified by filename and prepares the file for shared reading or writing, as defined by oflag and shflag. _wsopen is a wide-character version of _sopen; the filename argument to _wsopen is a wide-character string. _wsopen and _sopen behave identically otherwise.
Tchar.h routine | _UNICODE and _MBCS not defined | _MBCS defined | _UNICODE defined |
|---|---|---|---|
_tsopen | _sopen | _sopen | _wsopen |
The integer expression oflag is formed by combining one or more of the following manifest constants, defined in the file Fcntl.h. When two or more constants form the argument oflag, they are combined with the bitwise-OR operator ( | ).
To specify the file access mode, you must specify either _O_RDONLY, _O_RDWR, or _O_WRONLY. There is no default value for the access mode.
If _sopen is called with _O_WRONLY|_O_APPEND (append mode) and _O_WTEXT, _O_U16TEXT, or _O_U8TEXT, it will first try 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 will open the file for writing only and use the default value for the Unicode mode setting.
The argument shflag is a constant expression consisting of one of the following manifest constants, defined in Share.h.
The pmode argument is required only when one specifies _O_CREAT. If the file does not 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, defined in SYS\Stat.h. When both constants are given, they are combined with the bitwise-OR operator. The meaning of pmode is as follows.
If write permission is not given, the file is read-only. Under the Windows operating system, all files are readable; it is not possible to give write-only permission. Thus, the modes _S_IWRITE and _S_IREAD | _S_IWRITE are equivalent.
_sopen applies the current file-permission mask to pmode before setting the permissions (see _umask).
Routine | Required header | Optional header |
|---|---|---|
_sopen | <io.h> | <fcntl.h>, <sys/types.h>, <sys/stat.h>, <share.h> |
_wsopen | <io.h> or <wchar.h> | <fcntl.h>, <sys/types.h>, <sys/stat.h>, <share.h> |
For more compatibility information, see Compatibility in the Introduction.
Not applicable. To call the standard C function, use PInvoke. For more information, see Platform Invoke Examples.
Note