PathIO.ReadTextAsync Metodo

Definizione

Overload

ReadTextAsync(String)

Legge il contenuto del file nel percorso specificato o nell'URI (Uniform Resource Identifier) e restituisce testo.

ReadTextAsync(String, UnicodeEncoding)

Legge il contenuto del file nel percorso specificato o nell'URI (Uniform Resource Identifier) usando la codifica dei caratteri specificata e restituisce testo.

ReadTextAsync(String)

Legge il contenuto del file nel percorso specificato o nell'URI (Uniform Resource Identifier) e restituisce testo.

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)

Parametri

absolutePath
String

Platform::String

winrt::hstring

Percorso del file da leggere.

Restituisce

IAsyncOperation<String>

IAsyncOperation<Platform::String>

IAsyncOperation<winrt::hstring>

Al termine di questo metodo, restituisce il contenuto del file come stringa di testo.

Attributi

Esempio

Questo esempio illustra come usare readTextAsync(absolutePath) per leggere il testo dal file nel percorso in absoluteFilePath come segue:

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

È possibile usare quindi o fatto per dichiarare una funzione per acquisire ed elaborare il testo letto dal file. Al termine del metodo readTextAsync, il testo verrà passato a questa funzione come oggetto stringa (contents nell'esempio).

Vedi anche

Si applica a

ReadTextAsync(String, UnicodeEncoding)

Legge il contenuto del file nel percorso specificato o nell'URI (Uniform Resource Identifier) usando la codifica dei caratteri specificata e restituisce testo.

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)

Parametri

absolutePath
String

Platform::String

winrt::hstring

Percorso del file da leggere.

encoding
UnicodeEncoding

Codifica dei caratteri del file.

Restituisce

IAsyncOperation<String>

IAsyncOperation<Platform::String>

IAsyncOperation<winrt::hstring>

Al termine di questo metodo, restituisce il contenuto del file come stringa di testo.

Attributi

Vedi anche

Si applica a