PathIO.AppendTextAsync 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
AppendTextAsync(String, String) |
将文本追加到文件指定路径或统一资源标识符 (URI) 。 |
AppendTextAsync(String, String, UnicodeEncoding) |
使用指定的字符编码将文本追加到指定路径或统一资源标识符 (URI) 的文件。 |
AppendTextAsync(String, String)
将文本追加到文件指定路径或统一资源标识符 (URI) 。
public:
static IAsyncAction ^ AppendTextAsync(Platform::String ^ absolutePath, Platform::String ^ contents);
/// [Windows.Foundation.Metadata.Overload("AppendTextAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
static IAsyncAction AppendTextAsync(winrt::hstring const& absolutePath, winrt::hstring const& contents);
[Windows.Foundation.Metadata.Overload("AppendTextAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncAction AppendTextAsync(string absolutePath, string contents);
function appendTextAsync(absolutePath, contents)
Public Shared Function AppendTextAsync (absolutePath As String, contents As String) As IAsyncAction
参数
- absolutePath
-
String
Platform::String
winrt::hstring
将文本追加到的文件的路径。
- contents
-
String
Platform::String
winrt::hstring
要追加的文本。
返回
此方法完成后,不会返回任何对象或值。
- 属性
另请参阅
适用于
AppendTextAsync(String, String, UnicodeEncoding)
使用指定的字符编码将文本追加到指定路径或统一资源标识符 (URI) 的文件。
public:
static IAsyncAction ^ AppendTextAsync(Platform::String ^ absolutePath, Platform::String ^ contents, UnicodeEncoding encoding);
/// [Windows.Foundation.Metadata.Overload("AppendTextWithEncodingAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
static IAsyncAction AppendTextAsync(winrt::hstring const& absolutePath, winrt::hstring const& contents, UnicodeEncoding const& encoding);
[Windows.Foundation.Metadata.Overload("AppendTextWithEncodingAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncAction AppendTextAsync(string absolutePath, string contents, UnicodeEncoding encoding);
function appendTextAsync(absolutePath, contents, encoding)
Public Shared Function AppendTextAsync (absolutePath As String, contents As String, encoding As UnicodeEncoding) As IAsyncAction
参数
- absolutePath
-
String
Platform::String
winrt::hstring
将文本追加到的文件的路径。
- contents
-
String
Platform::String
winrt::hstring
要追加的文本。
- encoding
- UnicodeEncoding
文件的字符编码。
返回
此方法完成后,不会返回任何对象或值。
- 属性