string FileReadString(int handle, int length=0,)
The function reads the string from the current file position. Applies to both CSV and binary files. For text files, the string will be read before the delimiter. For binary file, the given count of characters will be read to the string. To get the detailed error information, one has to call the GetLastError()function.
この関数は、現在のファイルの位置から文字列を読み込みます。CSV と バイナリ ファイルの両方に適用できます。テキスト ファイルの場合は、文字列の区切記号の前を読み取ります。バイナリ ファイルの場合は、指定した文字数の文字列を読み取ります。詳細なエラー情報を取得するには、GetLastError() 関数を使用します。
Parameters:
パラメータ:
1 2 3 4 5 | <b>handle</b> - File handle returned by the <a href="20170707112515/http://www.metasys-seeker.net/MQL4_Reference_ver1/13-06_FileOpen.html">FileOpen()</a> function. <a href="20170707112515/http://www.metasys-seeker.net/MQL4_Reference_ver1/13-06_FileOpen.html">FileOpen()</a> 関数によって返されたファイル ハンドル。 <b>length</b> - Amount of characters for reading. 読み取る文字の量。 |
Sample:
サンプル:
1 2 3 4 5 6 7 8 | int handle; string str; handle=FileOpen("filename.csv", FILE_CSV|FILE_READ); if(handle>0) { str=FileReadString(handle); FileClose(handle); } |