FileIO.AppendLinesAsync 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
AppendLinesAsync(IStorageFile, IIterable<String>) |
将文本行追加到指定的文件。 |
AppendLinesAsync(IStorageFile, IIterable<String>, UnicodeEncoding) |
使用指定的字符编码将文本行追加到指定的文件中。 |
AppendLinesAsync(IStorageFile, IIterable<String>)
将文本行追加到指定的文件。
public:
static IAsyncAction ^ AppendLinesAsync(IStorageFile ^ file, IIterable<Platform::String ^> ^ lines);
/// [Windows.Foundation.Metadata.Overload("AppendLinesAsync")]
static IAsyncAction AppendLinesAsync(IStorageFile const& file, IIterable<winrt::hstring> const& lines);
[Windows.Foundation.Metadata.Overload("AppendLinesAsync")]
public static IAsyncAction AppendLinesAsync(IStorageFile file, IEnumerable<string> lines);
function appendLinesAsync(file, lines)
Public Shared Function AppendLinesAsync (file As IStorageFile, lines As IEnumerable(Of String)) As IAsyncAction
参数
- file
- IStorageFile
行追加到的文件。
要作为行追加的文本字符串的列表。
返回
此方法完成后,不会返回任何对象或值。
- 属性
另请参阅
适用于
AppendLinesAsync(IStorageFile, IIterable<String>, UnicodeEncoding)
使用指定的字符编码将文本行追加到指定的文件中。
public:
static IAsyncAction ^ AppendLinesAsync(IStorageFile ^ file, IIterable<Platform::String ^> ^ lines, UnicodeEncoding encoding);
/// [Windows.Foundation.Metadata.Overload("AppendLinesWithEncodingAsync")]
static IAsyncAction AppendLinesAsync(IStorageFile const& file, IIterable<winrt::hstring> const& lines, UnicodeEncoding const& encoding);
[Windows.Foundation.Metadata.Overload("AppendLinesWithEncodingAsync")]
public static IAsyncAction AppendLinesAsync(IStorageFile file, IEnumerable<string> lines, UnicodeEncoding encoding);
function appendLinesAsync(file, lines, encoding)
Public Shared Function AppendLinesAsync (file As IStorageFile, lines As IEnumerable(Of String), encoding As UnicodeEncoding) As IAsyncAction
参数
- file
- IStorageFile
行追加到的文件。
要作为行追加的文本字符串的列表。
- encoding
- UnicodeEncoding
文件的字符编码。
返回
此方法完成后,不会返回任何对象或值。
- 属性