FileIO.AppendLinesAsync 메서드

정의

오버로드

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

줄이 추가되는 파일입니다.

lines

IIterable<String>

IEnumerable<String>

IIterable<Platform::String>

IIterable<winrt::hstring>

줄로 추가할 텍스트 문자열 목록입니다.

반환

이 메서드가 완료되면 개체 또는 값이 반환되지 않습니다.

특성

추가 정보

적용 대상

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

줄이 추가되는 파일입니다.

lines

IIterable<String>

IEnumerable<String>

IIterable<Platform::String>

IIterable<winrt::hstring>

줄로 추가할 텍스트 문자열 목록입니다.

encoding
UnicodeEncoding

파일의 문자 인코딩입니다.

반환

이 메서드가 완료되면 개체 또는 값이 반환되지 않습니다.

특성

추가 정보

적용 대상