_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");
}
  

请参见

参考

_fmode

_get_fmode

_setmode

文本和二进制架构文件I/O