PathIO.AppendLinesAsync(String, IIterable(String)) | appendLinesAsync(String, IIterable(String)) method
Appends lines of text to the file at the specified path or URI.
Syntax
Windows.Storage.PathIO.appendLinesAsync(absolutePath, lines).done( /* Your success and error handlers */ );
Parameters
- absolutePath
-
Type: String [JavaScript] | System.String [.NET] | Platform::String [C++]
The path or URI of the file that the lines are appended to.
- lines
-
Type: IIterable<String> [JavaScript/C++] | System.Collections.Generic.IEnumerable<String> [.NET]
The list of text strings to append as lines.
Return value
Type: IAsyncAction
No object or value is returned when this method completes.
Remarks
Note To read or write to a file using a path or URIs, you must have permission to access the file's location.
You can specify an app URIs to read or write files in app-specific locations like your app data folder ("ms-appdata://"). To learn more about app URIs, see How to reference content.
Requirements
|
Minimum supported client | Windows 8 |
|---|---|
|
Minimum supported server | Windows Server 2012 |
|
Namespace |
|
|
Metadata |
|
See also
Build date: 2/25/2013
