bool FileIsEnding( int handle)
如果文件指针是在文件的末端,返回逻辑配齐, 否则返回 false。 获得详细的错误信息, 查看 GetLastError() 函数。 如果文件末端在只读期间到达, GetLastError() 函数将返回 错误 ERR_END_OF_FILE (4099)。
参数:
handle - 用 FileOpen()函数返回的句柄。
示例:
- if(FileIsEnding(h1))
- {
- FileClose(h1);
- return(false);
- }
复制代码
|