_set_fmode
设置文件 I/O 操作的默认文件翻译模式。
errno_t _set_fmode(
int mode
);
参数
- [in] mode
文件所需的特定模式:_O_TEXT 或 _O_BINARY。
返回值
如果成功,返回零;如果失败,则为错误代码。 如果 mode 不是 _O_TEXT 或 _O_BINARY 或 _O_WTEXT,则将调用无效参数处理程序,如参数验证所述。 如果允许执行继续,则该函数设置 errno 为 EINVAL 并返回 EINVAL。
备注
函数设置 _fmode 全局变量。 此变量为文件 I/O 操作 _open 和 _pipe指定默认文件的特定转换模式。
_O_TEXT 和 _O_BINARY 在 Fcntl.h 中进行定义。 EINVAL 在 Errno.h 定义。
要求
例程 |
必需的标头 |
可选标头 |
---|---|---|
_set_fmode |
<stdlib.h> |
<fcntl.h,errno.h><> |
有关更多兼容性信息,请参见“简介”中的兼容性。
示例
// crt_set_fmode.c
#include <stdlib.h>
#include <stdio.h>
#include <fcntl.h> /* for _O_TEXT and _O_BINARY */
#include <errno.h> /* for EINVAL */
#include <sys\stat.h> /* for _S_IWRITE */
#include <share.h> /* for _SH_DENYNO */
int main()
{
int mode, fd, ret;
errno_t err;
int buf[12] = { 65, 66, 67, 68, 69, 70, 71, 72, 73, 74,
75, 76 };
char * filename = "fmode.out";
err = _get_fmode(&mode);
if (err == EINVAL)
{
printf( "Invalid parameter: mode\n");
return 1;
}
else
printf( "Default Mode is %s\n", mode == _O_TEXT ? "text" :
"binary");
err = _set_fmode(_O_BINARY);
if (err == EINVAL)
{
printf( "Invalid mode.\n");
return 1;
}
if ( _sopen_s(&fd, filename, _O_RDWR | _O_CREAT, _SH_DENYNO, _S_IWRITE | _S_IREAD) != 0 )
{
printf( "Error opening the file %s\n", filename);
return 1;
}
if (ret = _write(fd, buf, 12*sizeof(int)) < 12*sizeof(int))
{
printf( "Problem writing to the file %s.\n", filename);
printf( "Number of bytes written: %d\n", ret);
}
if (_close(fd) != 0)
{
printf("Error closing the file %s. Error code %d.\n",
filename, errno);
}
system("type fmode.out");
}