StorageFile.GetFileFromPathForUserAsync(User, String) Método

Definição

Obtém um objeto StorageFile com base em um caminho absoluto no sistema de arquivos para um determinado usuário.

public:
 static IAsyncOperation<StorageFile ^> ^ GetFileFromPathForUserAsync(User ^ user, Platform::String ^ path);
/// [Windows.Foundation.Metadata.RemoteAsync]
 static IAsyncOperation<StorageFile> GetFileFromPathForUserAsync(User const& user, winrt::hstring const& path);
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<StorageFile> GetFileFromPathForUserAsync(User user, string path);
function getFileFromPathForUserAsync(user, path)
Public Shared Function GetFileFromPathForUserAsync (user As User, path As String) As IAsyncOperation(Of StorageFile)

Parâmetros

user
User

O Usuário para o qual StorageFile é retornado.

path
String

Platform::String

winrt::hstring

O caminho do arquivo para obter um StorageFile a ser representado.

Se o caminho usar barras, certifique-se de usar barras invertidas (\). As barras (/) não são aceitas por esse método.

Retornos

Quando esse método é concluído, ele retorna o arquivo como um StorageFile.

Atributos

Requisitos do Windows

Família de dispositivos
Windows 10, version 2004 (introduzida na 10.0.19041.0)
API contract
Windows.Foundation.UniversalApiContract (introduzida na v10.0)

Exemplos

async Task<StorageFile> GetStorageFileAsync(User user, string path) {     
    // It is possible the file no longer exists     
    // or permissions were changed so that the     
    // app no longer has access to the path.     
    try     
    {         
        return await StorageFile.GetFileFromPathForUserAsync(user, path);     
    }     
    catch( System.IO.IOException ex )    
    {         
        // File, or path not found I/O Exceptions can happen         
        // notify user or implement fallback, etc...         
        string message = ex.Message;         
        return null;     
    }     
    catch(System.UnauthorizedAccessException ex)     
    {         
        // Access denied - notify user or implement fallback, etc...  
        string message = ex.Message;         
        return null; 
    }    

Comentários

Esse método é MUA (Reconhecimento multiusuário).

Aplica-se a

Confira também