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
文件的字符编码。
返回
此方法完成后,不会返回任何对象或值。
- 属性