FileAppendAllLines Method (KernelTransaction, String, IEnumerableString) |
[AlphaFS] Appends lines to a file, and then closes the file. If the specified file does not exist, this method creates a file,
writes the specified lines to the file, and then closes the file.
Namespace: Alphaleonis.Win32.FilesystemAssembly: AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax public static void AppendAllLines(
KernelTransaction transaction,
string path,
IEnumerable<string> contents
)
Public Shared Sub AppendAllLines (
transaction As KernelTransaction,
path As String,
contents As IEnumerable(Of String)
)
public:
static void AppendAllLines(
KernelTransaction^ transaction,
String^ path,
IEnumerable<String^>^ contents
)
static member AppendAllLines :
transaction : KernelTransaction *
path : string *
contents : IEnumerable<string> -> unit
Parameters
- transaction
- Type: Alphaleonis.Win32.FilesystemKernelTransaction
The transaction. - path
- Type: SystemString
The file to append the lines to. The file is created if it doesn't already exist. - contents
- Type: System.Collections.GenericIEnumerableString
The lines to append to the file.
Exceptions Remarks
The method creates the file if it doesn't exist, but it doesn't create new directories. Therefore, the value of the path parameter
must contain existing directories.
See Also