VFile.AppendAllTextAsync Method
Namespace: Rebex.IO
Assembly: Rebex.FileSystem.dll (version 7.0.9119)
AppendAllTextAsync(String, String, CancellationToken)
Method appends contents
to a file identified by the path
.
Declaration
public static Task AppendAllTextAsync(string path, string contents, CancellationToken cancellationToken = default(CancellationToken))
Parameters
Type | Name | Description |
---|---|---|
String | path | The path of the file. |
String | contents | The lines to be appended to the file. |
CancellationToken | cancellationToken | The cancellation token. See remarks for details. |
Returns
Type | Description |
---|---|
Task | A Task that represents the operation. See remarks for details. |
Remarks
- Method creates the file if it does not exist, opens the file, writes the content and closes the file.
-
Rebex virtual file systems are synchronous. This method is provided only for compatibility with the File API on modern platforms.
Despite the async suffix this method runs synchronously and returns completed Task.
The
cancellationToken
is not used. If the need to offload the operation to the background thread arise, consider using the .NET Task.Run (or TaskFactory.StartNew on older platforms) API with the synchronous Rebex.IO.FileSystem.IO.VFile.AppendAllText(System.String,System.String) method.
AppendAllTextAsync(String, String, Encoding, CancellationToken)
Method appends contents
to a file identified
by the path
and using a encoding
.
Declaration
public static Task AppendAllTextAsync(string path, string contents, Encoding encoding, CancellationToken cancellationToken = default(CancellationToken))
Parameters
Type | Name | Description |
---|---|---|
String | path | The path of the file. |
String | contents | The lines to be appended to the file. |
Encoding | encoding | The character encoding. |
CancellationToken | cancellationToken | The cancellation token. See remarks for details. |
Returns
Type | Description |
---|---|
Task | A Task that represents the operation. See remarks for details. |
Remarks
- Method creates the file if it does not exist, opens the file, writes the content and closes the file.
-
Rebex virtual file systems are synchronous. This method is provided only for compatibility with the File API on modern platforms.
Despite the async suffix this method runs synchronously and returns completed Task.
The
cancellationToken
is not used. If the need to offload the operation to the background thread arise, consider using the .NET Task.Run (or TaskFactory.StartNew on older platforms) API with the synchronous Rebex.IO.FileSystem.IO.VFile.AppendAllText(System.String,System.String,System.Text.Encoding) method.