Click or drag to resize

FPutS Function (IntPtr, String)

X#
Write a string, a carriage-return character, and a linefeed character to an open file.

Namespace:  XSharp.Core
Assembly:  XSharp.Core (in XSharp.Core.dll) Version: 2.19
Syntax
 FUNCTION FPutS(
	ptrHandle AS IntPtr,
	cBuffer AS STRING
) AS DWORD
Request Example View Source

Parameters

ptrHandle
Type: IntPtr
The handle of the file to write to.
cBuffer
Type: String
The string to write.

Return Value

Type: DWord
The number of bytes written.
If the value returned is equal to nBytes + 2, the operation was successful.
If the return value is less than nBytes + 2 or 0, this means that the length of cBuffer was less than nBytes, or the disk is full, or another error has occurred.
Remarks
FPuts() is a low-level file function that writes data to an open file from a string buffer. You can either write all or a portion of the buffer contents. Writing begins at the current file position, and the function returns the actual number of bytes written. This function is assumed to handle raw binary data and is not dependent upon the status of SetAnsi(). FWriteText() and FWrite4(), on the other hand, are dependent upon SetAnsi().
Examples
This example uses FPuts() to write lines starting at the beginning of a file.
The carriage-return/linefeed pair increase the return value by 2:
X#
1ptrHandle := FOpen2("c:\data\sales", FO_READWRITE)
2? FPuts(ptrHandle, "Line1")                //  7
3? FPuts(ptrHandle, "Line1", 2)                //  4
See Also