FileWriteAllText Method (KernelTransaction, String, String, PathFormat) |
[AlphaFS] Creates a new file as part of a transaction, write the contents to the file, and then closes the file. If the target file already exists, it is overwritten.
Namespace: Alphaleonis.Win32.FilesystemAssembly: AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax public static void WriteAllText(
KernelTransaction transaction,
string path,
string contents,
PathFormat pathFormat
)
Public Shared Sub WriteAllText (
transaction As KernelTransaction,
path As String,
contents As String,
pathFormat As PathFormat
)
public:
static void WriteAllText(
KernelTransaction^ transaction,
String^ path,
String^ contents,
PathFormat pathFormat
)
static member WriteAllText :
transaction : KernelTransaction *
path : string *
contents : string *
pathFormat : PathFormat -> unit
Parameters
- transaction
- Type: Alphaleonis.Win32.FilesystemKernelTransaction
The transaction. - path
- Type: SystemString
The file to write to. - contents
- Type: SystemString
The string to write to the file. - pathFormat
- Type: Alphaleonis.Win32.FilesystemPathFormat
Indicates the format of the path parameter(s).
Exceptions Remarks This method uses UTF-8 encoding without a Byte-Order Mark (BOM)
See Also