FileAppendAllText Method (String, String) |
Appends the specified stringto the file, creating the file if it does not already exist.
Namespace: Alphaleonis.Win32.FilesystemAssembly: AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax public static void AppendAllText(
string path,
string contents
)
Public Shared Sub AppendAllText (
path As String,
contents As String
)
public:
static void AppendAllText(
String^ path,
String^ contents
)
static member AppendAllText :
path : string *
contents : string -> unit
Parameters
- path
- Type: SystemString
The file to append the specified string to. - contents
- Type: SystemString
The string to append to the file.
Exceptions See Also