StorageFile.GetFileFromPathAsync(String) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient un objet StorageFile pour représenter le fichier au chemin spécifié.
public:
static IAsyncOperation<StorageFile ^> ^ GetFileFromPathAsync(Platform::String ^ path);
/// [Windows.Foundation.Metadata.RemoteAsync]
static IAsyncOperation<StorageFile> GetFileFromPathAsync(winrt::hstring const& path);
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<StorageFile> GetFileFromPathAsync(string path);
function getFileFromPathAsync(path)
Public Shared Function GetFileFromPathAsync (path As String) As IAsyncOperation(Of StorageFile)
Paramètres
- path
-
String
Platform::String
winrt::hstring
Chemin d’accès du fichier à représenter par storageFile .
Si votre chemin d’accès utilise des barres obliques, veillez à utiliser des barres obliques inverses (\). Les barres obliques (/) ne sont pas acceptées par cette méthode.
Retours
Une fois cette méthode terminée, elle retourne le fichier en tant que StorageFile.
- Attributs
Exceptions
Le fichier spécifié n'existe pas. Vérifiez la valeur du chemin d’accès.
Vous n’êtes pas autorisé à accéder au fichier spécifié. Pour plus d’informations, consultez Autorisations d’accès aux fichiers.
Le chemin d’accès ne peut pas être un chemin relatif ou un URI. Vérifiez la valeur du chemin d’accès.