PathIO.ReadTextAsync メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
ReadTextAsync(String) |
指定したパスまたは Uniform Resource Identifier (URI) にあるファイルの内容を読み取り、テキストを返します。 |
ReadTextAsync(String, UnicodeEncoding) |
指定した文字エンコードを使用して、指定したパスまたは Uniform Resource Identifier (URI) にあるファイルの内容を読み取り、テキストを返します。 |
ReadTextAsync(String)
指定したパスまたは Uniform Resource Identifier (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
読み取るファイルのパス。
戻り値
このメソッドが正常に完了すると、ファイルの内容がテキスト文字列として返されます。
- 属性
例
この例では、readTextAsync(absolutePath) を使用して、次のようにパス absoluteFilePath
にあるファイルからテキストを読み取る方法を示します。
Windows.Storage.PathIO.readTextAsync(absoluteFilePath).then(function (contents) {
// Add code to process the text read from the file
});
その後または完了を使用して、ファイルから読み取られたテキストをキャプチャして処理する関数を宣言できます。 readTextAsync メソッドが完了すると、テキストは 文字列 オブジェクト (contents
例では) としてこの関数に渡されます。
こちらもご覧ください
適用対象
ReadTextAsync(String, UnicodeEncoding)
指定した文字エンコードを使用して、指定したパスまたは Uniform Resource Identifier (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
ファイルの文字エンコード。
戻り値
このメソッドが正常に完了すると、ファイルの内容がテキスト文字列として返されます。
- 属性