函数`feof`始终返回1

时间:2015-08-10 01:44:08

标签: c++ c file-io visual-studio-2015 feof

我正在尝试读取大小为114,808字节的二进制文件。我为文件分配内存,然后尝试使用fopenfread读取文件。第一次调用fread时,它总是以274个字节读取,随后对feof的调用总是返回1,即使文档的末尾还没有到达。这是为什么?

根据feof的{​​{3}},如果读取操作尝试读取文件末尾,则 feof 函数返回非零值;它返回否则为0。“所以我不明白是什么导致feof一直返回1。

这是我到目前为止的代码。任何帮助将非常感激。谢谢!

// Open source file with read-only access
if ( iError == ERROR_SUCCESS )
{
    #ifdef _MSC_VER
    #pragma warning(disable : 4996)
    #endif
    pFile = fopen( pSrcPath, "r" );

    if ( pFile == NULL )
    {
        iError = ERROR_FILE_NOT_FOUND;
    }
}

// Read in source file to memory
if ( iError == ERROR_SUCCESS )
{
    do
    {
        // Buffer pointer passed to fread will be the file buffer, plus the
        //  number of bytes actually read thus far.
        iSize = fread( pFileBuf + iActReadSz, 1, iReqReadSz, pFile );
        iError = ferror( pFile );   // check for error
        iEndOfFile = feof( pFile ); // check for end of file

        if ( iError != 0 )
        {
            iError = ERROR_READ_FAULT;
        }
        else if ( iEndOfFile != 0 )
        {
            // Read operation attempted to read past the end of the file.
            fprintf( stderr,
                "Read operation attempted to read past the end of the file. %s: %s\n",
                pSrcPath, strerror(errno) );
        }
        else
        {
            iError = ERROR_SUCCESS; // reset error flag
            iActReadSz += iSize;    // increment actual size read
            iReqReadSz -= iSize;    // decrement requested read size
        }
    }
    while ((iEndOfFile == 0) && (iError == ERROR_SUCCESS));
}

// Close source file
if ( pFile != NULL )
{
    fclose( pFile );
}

仅供参考,我正在尝试编写此代码,以便源代码与C或多或少兼容,即使MSVS基本上迫使您进入C ++环境。

1 个答案:

答案 0 :(得分:7)

你没有包括" b"在fopen的模式字符串中。在MS Windows上,以文本模式打开文件将导致(在读取二进制文件时通常不希望发生的事情)它会在到达值为0x1A的字节时检测到EOF。