StorageFolder.Path Propriété
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 le chemin d’accès complet du dossier actif dans le système de fichiers, si le chemin d’accès est disponible.
public:
property Platform::String ^ Path { Platform::String ^ get(); };
winrt::hstring Path();
public string Path { get; }
var string = storageFolder.path;
Public ReadOnly Property Path As String
Valeur de propriété
Chemin d’accès complet du dossier actif dans le système de fichiers, si le chemin d’accès est disponible.
Implémente
Exemples
L’exemple suivant obtient le dossier d’installation de l’application et affiche la valeur du chemin d’accès du dossier.
using Windows.Storage;
using System.Diagnostics; // For writing results to the Output window.
// Get the app's installation folder.
StorageFolder appFolder = Windows.ApplicationModel.Package.Current.InstalledLocation;
// Print the folder's path to the Visual Studio Output window.
Debug.WriteLine(appFolder.Name + " folder path: " + appFolder.Path);
// Get the app's installation folder.
Windows::Storage::StorageFolder appFolder{ Windows::ApplicationModel::Package::Current().InstalledLocation() };
// Print the path to the debug window.
::OutputDebugString(appFolder.Path().c_str());
// Get the app's installation folder
StorageFolder^ appFolder = Windows::ApplicationModel::Package::Current->InstalledLocation;
//Print the path to the debug window
String^ path = appFolder->Path;
OutputDebugString(path->Begin());
Remarques
Ne vous fiez pas à cette propriété pour accéder à un dossier, car un chemin d’accès au système de fichiers n’est pas disponible pour certains dossiers. Par exemple, dans les cas suivants, le dossier n’a peut-être pas de chemin d’accès au système de fichiers ou le chemin du système de fichiers peut ne pas être disponible.
- Le dossier représente un conteneur pour un groupe de fichiers (par exemple, la valeur de retour de certaines surcharges de la méthode GetFoldersAsync ) au lieu d’un dossier réel dans le système de fichiers.
- Le dossier est sauvegardé par un URI.
- Le dossier a été choisi à l’aide d’un sélecteur de fichiers.