FileCreateText Method (String, PathFormat) |
[AlphaFS] Creates or opens a file for writing UTF-8 encoded text.
Namespace: Alphaleonis.Win32.FilesystemAssembly: AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax public static StreamWriter CreateText(
string path,
PathFormat pathFormat
)
Public Shared Function CreateText (
path As String,
pathFormat As PathFormat
) As StreamWriter
public:
static StreamWriter^ CreateText(
String^ path,
PathFormat pathFormat
)
static member CreateText :
path : string *
pathFormat : PathFormat -> StreamWriter
Parameters
- path
- Type: SystemString
The file to be opened for writing. - pathFormat
- Type: Alphaleonis.Win32.FilesystemPathFormat
Indicates the format of the path parameter(s).
Return Value
Type:
StreamWriterA StreamWriter that writes to the specified file using UTF-8 encoding.
See Also