FileHelperAsyncEngineTBeginAppendToFile Method (String, Int32) |
Open a file to Append to the end.
Namespace:
FileHelpers
Assembly:
FileHelpers (in FileHelpers.dll) Version: 3.2.6
Syntaxpublic IDisposable BeginAppendToFile(
string fileName,
int bufferSize
)
Public Function BeginAppendToFile (
fileName As String,
bufferSize As Integer
) As IDisposable
Parameters
- fileName
- Type: SystemString
The file path to be opened to write at the end. - bufferSize
- Type: SystemInt32
Size of the buffer for writing
Return Value
Type:
IDisposable[Missing <returns> documentation for "M:FileHelpers.FileHelperAsyncEngine`1.BeginAppendToFile(System.String,System.Int32)"]
RemarksThis method open and seek ends the file.
When you finish appending to the file you must call Close method.
See Also