PathIO.ReadTextAsync 方法

定义

重载

ReadTextAsync(String)

读取指定路径或统一资源标识符处的文件内容, (URI) 并返回文本。

ReadTextAsync(String, UnicodeEncoding)

使用指定的字符编码) 读取指定路径或统一资源标识符 (URI 处的文件内容,并返回文本。

ReadTextAsync(String)

读取指定路径或统一资源标识符处的文件内容, (URI) 并返回文本。

public:
 static IAsyncOperation<Platform::String ^> ^ ReadTextAsync(Platform::String ^ absolutePath);
/// [Windows.Foundation.Metadata.Overload("ReadTextAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
 static IAsyncOperation<winrt::hstring> ReadTextAsync(winrt::hstring const& absolutePath);
[Windows.Foundation.Metadata.Overload("ReadTextAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<string> ReadTextAsync(string absolutePath);
function readTextAsync(absolutePath)
Public Shared Function ReadTextAsync (absolutePath As String) As IAsyncOperation(Of String)

参数

absolutePath
String

Platform::String

winrt::hstring

要读取的文件的路径。

返回

IAsyncOperation<String>

IAsyncOperation<Platform::String>

IAsyncOperation<winrt::hstring>

此方法成功完成后,它会以文本字符串的形式返回文件的内容。

属性

示例

此示例演示如何使用 readTextAsync (absolutePath) 从路径 absoluteFilePath 处的文件中读取文本,如下所示:

Windows.Storage.PathIO.readTextAsync(absoluteFilePath).then(function (contents) {
    // Add code to process the text read from the file
});

可以使用 thendone 声明函数来捕获和处理从文件读取的文本。 readTextAsync 方法完成后,文本将作为 字符串 对象传递给此函数, (示例) contents

另请参阅

适用于

ReadTextAsync(String, UnicodeEncoding)

使用指定的字符编码) 读取指定路径或统一资源标识符 (URI 处的文件内容,并返回文本。

public:
 static IAsyncOperation<Platform::String ^> ^ ReadTextAsync(Platform::String ^ absolutePath, UnicodeEncoding encoding);
/// [Windows.Foundation.Metadata.Overload("ReadTextWithEncodingAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
 static IAsyncOperation<winrt::hstring> ReadTextAsync(winrt::hstring const& absolutePath, UnicodeEncoding const& encoding);
[Windows.Foundation.Metadata.Overload("ReadTextWithEncodingAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<string> ReadTextAsync(string absolutePath, UnicodeEncoding encoding);
function readTextAsync(absolutePath, encoding)
Public Shared Function ReadTextAsync (absolutePath As String, encoding As UnicodeEncoding) As IAsyncOperation(Of String)

参数

absolutePath
String

Platform::String

winrt::hstring

要读取的文件的路径。

encoding
UnicodeEncoding

文件的字符编码。

返回

IAsyncOperation<String>

IAsyncOperation<Platform::String>

IAsyncOperation<winrt::hstring>

此方法成功完成后,它会以文本字符串的形式返回文件的内容。

属性

另请参阅

适用于