FileIO.AppendTextAsync 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
AppendTextAsync(IStorageFile, String) |
지정된 파일에 텍스트를 추가합니다. |
AppendTextAsync(IStorageFile, String, UnicodeEncoding) |
지정된 문자 인코딩을 사용하여 지정된 파일에 텍스트를 추가합니다. |
AppendTextAsync(IStorageFile, String)
지정된 파일에 텍스트를 추가합니다.
public:
static IAsyncAction ^ AppendTextAsync(IStorageFile ^ file, Platform::String ^ contents);
/// [Windows.Foundation.Metadata.Overload("AppendTextAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
static IAsyncAction AppendTextAsync(IStorageFile const& file, winrt::hstring const& contents);
[Windows.Foundation.Metadata.Overload("AppendTextAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncAction AppendTextAsync(IStorageFile file, string contents);
function appendTextAsync(file, contents)
Public Shared Function AppendTextAsync (file As IStorageFile, contents As String) As IAsyncAction
매개 변수
- file
- IStorageFile
텍스트가 추가된 파일입니다.
- contents
-
String
Platform::String
winrt::hstring
추가할 텍스트입니다.
반환
이 메서드가 완료되면 개체 또는 값이 반환되지 않습니다.
- 특성
추가 정보
적용 대상
AppendTextAsync(IStorageFile, String, UnicodeEncoding)
지정된 문자 인코딩을 사용하여 지정된 파일에 텍스트를 추가합니다.
public:
static IAsyncAction ^ AppendTextAsync(IStorageFile ^ file, Platform::String ^ contents, UnicodeEncoding encoding);
/// [Windows.Foundation.Metadata.Overload("AppendTextWithEncodingAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
static IAsyncAction AppendTextAsync(IStorageFile const& file, winrt::hstring const& contents, UnicodeEncoding const& encoding);
[Windows.Foundation.Metadata.Overload("AppendTextWithEncodingAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncAction AppendTextAsync(IStorageFile file, string contents, UnicodeEncoding encoding);
function appendTextAsync(file, contents, encoding)
Public Shared Function AppendTextAsync (file As IStorageFile, contents As String, encoding As UnicodeEncoding) As IAsyncAction
매개 변수
- file
- IStorageFile
텍스트가 추가된 파일입니다.
- contents
-
String
Platform::String
winrt::hstring
추가할 텍스트입니다.
- encoding
- UnicodeEncoding
파일의 문자 인코딩입니다.
반환
이 메서드가 완료되면 개체 또는 값이 반환되지 않습니다.
- 특성