Click or drag to resize

FileHelperAsyncEngineTBeginAppendToFile Method (String, Int32)

Open a file to Append to the end.

Namespace:  FileHelpers
Assembly:  FileHelpers (in FileHelpers.dll) Version: 3.2.6
Syntax
public IDisposable BeginAppendToFile(
	string fileName,
	int bufferSize
)

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)"]

Remarks

This method open and seek ends the file.

When you finish appending to the file you must call Close method.

See Also