P
ppzhao
Unregistered / Unconfirmed
GUEST, unregistred user!
// if we cannot open the file, return an error
// NOTE: the FMPM_BUF_CLOSE is not called when an error occurs
// during the creation
if( Buf->hFile == INVALID_HANDLE_VALUE )
{
free (Buf);
return( FMPE_DOS );
}
当打开文件失败的话,这样处理,程序会停止响应,应该如何处理呢
我想了很多办法,都不成功。
开发包带的示例程序打开不存在的文件,也会死掉
顺便问一下,有好长时间全文检索不可用,为啥?!
// NOTE: the FMPM_BUF_CLOSE is not called when an error occurs
// during the creation
if( Buf->hFile == INVALID_HANDLE_VALUE )
{
free (Buf);
return( FMPE_DOS );
}
当打开文件失败的话,这样处理,程序会停止响应,应该如何处理呢
我想了很多办法,都不成功。
开发包带的示例程序打开不存在的文件,也会死掉
顺便问一下,有好长时间全文检索不可用,为啥?!