PathIO.AppendLinesAsync メソッド

定義

オーバーロード

AppendLinesAsync(String, IIterable<String>)

指定したパスまたは Uniform Resource Identifier (URI) にあるファイルにテキスト行を追加します。

AppendLinesAsync(String, IIterable<String>, UnicodeEncoding)

指定した文字エンコードを使用して、指定したパスまたは UNIFORM Resource Identifier (URI) にあるファイルにテキスト行を追加します。

AppendLinesAsync(String, IIterable<String>)

指定したパスまたは Uniform Resource Identifier (URI) にあるファイルにテキスト行を追加します。

public:
 static IAsyncAction ^ AppendLinesAsync(Platform::String ^ absolutePath, IIterable<Platform::String ^> ^ lines);
/// [Windows.Foundation.Metadata.Overload("AppendLinesAsync")]
 static IAsyncAction AppendLinesAsync(winrt::hstring const& absolutePath, IIterable<winrt::hstring> const& lines);
[Windows.Foundation.Metadata.Overload("AppendLinesAsync")]
public static IAsyncAction AppendLinesAsync(string absolutePath, IEnumerable<string> lines);
function appendLinesAsync(absolutePath, lines)
Public Shared Function AppendLinesAsync (absolutePath As String, lines As IEnumerable(Of String)) As IAsyncAction

パラメーター

absolutePath
String

Platform::String

winrt::hstring

行が追加されるファイルのパスまたは UNIFORM Resource Identifier (URI)。

lines

IIterable<String>

IEnumerable<String>

IIterable<Platform::String>

IIterable<winrt::hstring>

行として追加するテキスト文字列の一覧。

戻り値

このメソッドが完了すると、オブジェクトまたは値は返されません。

属性

こちらもご覧ください

適用対象

AppendLinesAsync(String, IIterable<String>, UnicodeEncoding)

指定した文字エンコードを使用して、指定したパスまたは UNIFORM Resource Identifier (URI) にあるファイルにテキスト行を追加します。

public:
 static IAsyncAction ^ AppendLinesAsync(Platform::String ^ absolutePath, IIterable<Platform::String ^> ^ lines, UnicodeEncoding encoding);
/// [Windows.Foundation.Metadata.Overload("AppendLinesWithEncodingAsync")]
 static IAsyncAction AppendLinesAsync(winrt::hstring const& absolutePath, IIterable<winrt::hstring> const& lines, UnicodeEncoding const& encoding);
[Windows.Foundation.Metadata.Overload("AppendLinesWithEncodingAsync")]
public static IAsyncAction AppendLinesAsync(string absolutePath, IEnumerable<string> lines, UnicodeEncoding encoding);
function appendLinesAsync(absolutePath, lines, encoding)
Public Shared Function AppendLinesAsync (absolutePath As String, lines As IEnumerable(Of String), encoding As UnicodeEncoding) As IAsyncAction

パラメーター

absolutePath
String

Platform::String

winrt::hstring

行が追加されるファイルのパス。

lines

IIterable<String>

IEnumerable<String>

IIterable<Platform::String>

IIterable<winrt::hstring>

行として追加するテキスト文字列の一覧。

encoding
UnicodeEncoding

ファイルの文字エンコード。

戻り値

このメソッドが完了すると、オブジェクトまたは値は返されません。

属性

こちらもご覧ください

適用対象