FWriteLine Function (IntPtr, String) | |
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 FWriteLine(
ptrHandle AS IntPtr,
cBuffer AS STRING
) AS DWORD
public static uint FWriteLine(
IntPtr ptrHandle,
string cBuffer
)
Request Example
View SourceParameters
- 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
FWriteLine() 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 FWriteLine() to write lines starting at the beginning of a file.
The carriage-return/linefeed pair increase the return value by 2:
1hF := FOpen2("c:\data\sales", FO_READWRITE)
2IF hF != F_ERROR
3 ? FWriteLine(hF, "Line1")
4 ? FWriteLine(hF, "Line1", 2)
5ENDIF
See Also