文字列ファイルの書き込み【FileWriteString】

int FileWriteString(int handle, string value, int length)

 

The function writes the string to a binary file from the current file position.

この関数は、現在のファイル位置から、文字列をバイナリ ファイルに書き込みます。

Returns the actually written bytes count or a negative value if an error occurs.

エラーが発生した場合は、実際に書き込んだバイト数か、負の値を返します。

To get the detailed error information, one has to call the GetLastError() function.

詳細なエラー情報を取得するには、GetLastError() 関数を呼び出します。

Parameters:

パラメータ:

handle
File handle returned by the FileOpen() function.

FileOpen() 関数によって返されたファイル ハンドル。

value
String to be written.

書き込む文字列。

length
The length of the string to be written.If the string length exceeds the given value, it will be truncated.If it is shorter, it will be extended by binary 0s up to the given length.

書き込む文字列の長さ。文字列の長さが指定した値を超えている場合、切り捨てられます。短い場合は、指定した長さまでバイナリの 0 によって延長されます。

 

Sample:

サンプル:

Leave a Reply

Your email address will not be published. Required fields are marked *

CAPTCHA


You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code class="" title="" data-url=""> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong> <pre class="" title="" data-url=""> <span class="" title="" data-url="">