_eof

文件结尾的测试(EOF)

int _eof( 
   int fd 
);

参数

  • fd
    引用开启文件的描述符。

返回值

_eof 返回 1,则当前位置的文件结束,或者 0,如果它不是。 返回值 - 1 指示错误;在这种情况下,的参数无效处理程序,如 参数验证所述。 如果允许继续执行,errno 设置为 EBADF,则指示无效的文件说明符。

备注

_eof 函数确定文件的末尾与 fd 是否已到达。

要求

功能

必需的标头

可选标头

_eof

<io.h>

<errno.h>

有关更多兼容性信息,请参见“简介”中的兼容性

示例

// crt_eof.c
// This program reads data from a file
// ten bytes at a time until the end of the
// file is reached or an error is encountered.
//
#include <io.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <share.h>

int main( void )
{
   int  fh, count, total = 0;
   char buf[10];
   if( _sopen_s( &fh, "crt_eof.txt", _O_RDONLY, _SH_DENYNO, 0 ) )
   {
        perror( "Open failed");
        exit( 1 );
   }
   // Cycle until end of file reached: 
   while( !_eof( fh ) )
   {
      // Attempt to read in 10 bytes: 
      if( (count = _read( fh, buf, 10 )) == -1 )
      {
         perror( "Read error" );
         break;
      }
      // Total actual bytes read 
      total += count;
   }
   printf( "Number of bytes read = %d\n", total );
   _close( fh );
}

Input: crt_eof.txt

This file contains some text.

Output

Number of bytes read = 29

.NET Framework 等效项

不适用。若要调用标准 C 函数,请使用 PInvoke。有关更多信息,请参见平台调用示例

请参见

参考

错误处理 (CRT)

低级别 I/O

clearerr

feof

ferror

perror、_wperror