MultiRecordEngineBeginAppendToFile Method |
Open a file to be appended at the end.
Namespace:
FileHelpers
Assembly:
FileHelpers (in FileHelpers.dll) Version: 3.2.6
Syntaxpublic void BeginAppendToFile(
string fileName
)
Public Sub BeginAppendToFile (
fileName As String
)
Parameters
- fileName
- Type: SystemString
The file path to be opened to write at the end.
RemarksThis method open and seek to the end the file.
When you finish to append to the file you must call
Close method.
See Also