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