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