bool FileIsEnding(int handle)
Returns logical true if file pointer is at the end of the file, otherwise returns false. To get the detailed error information, call GetLastError() function. If the file end is reached during reading, the GetLastError() function will return error ERR_END_OF_FILE (4099).
ファイル ポインタがファイルの終端にある場合、論理値 TRUE を返します。それ以外の場合は、FALSE を返します。詳細なエラー情報を取得するには、GetLastError() 関数を呼び出してください。読み込み中に、ファイルの終端に達した場合は、GetLastError() 関数は、エラーコード ERR_END_OF_FILE (4099) を返します。
Parameters:
パラメータ:
1 2 | <b>handle</b> - File handle, returned by FileOpen() functions. FileOpen() 関数によって返されたファイル ハンドル。 |
Sample:
サンプル:
1 2 3 4 5 | if(FileIsEnding(h1)) { FileClose(h1); return(false); } |