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
檔案的字元編碼。
傳回
這個方法完成時不會傳回任何物件或值。
- 屬性