int FileReadArray(int handle, void array[ ], int start, int count)
Reads the specified amount of elements from the binary file into array. Before reading, make sure that the array is large enough. Returns the amount of actually read elements.
バイナリ ファイルにある配列から、指定された要素の量を読み込みます。読み込む前に、配列が十分であることを確認してください。実際に読み込まれた要素の数を返します。
To get the detailed error information, call the GetLastError() function.
詳細なエラー情報を取得するには、GetLastError() 関数を呼び出します。
Parameters:
パラメータ:
1 2 3 4 5 6 7 8 9 10 11 | <b>handle</b> - File handle returned by the FileOpen() function. FileOpen() 関数によって返されたファイル ハンドル。 <b>array[]</b> - Array where data will be stored. データを格納する配列。 <b>start</b> - Starting position for storing in array. 配列を格納する開始位置。 <b>count</b> - Count of elements to be read. 読み込む要素の数。 |
Sample:
サンプル:
1 2 3 4 5 6 7 8 | int handle; double varray[10]; handle=FileOpen("filename.dat", FILE_BIN|FILE_READ); if(handle>0) { FileReadArray(handle, varray, 0, 10); FileClose(handle); } |