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
파일의 문자 인코딩입니다.
반환
이 메서드가 완료되면 개체 또는 값이 반환되지 않습니다.
- 특성