FileSystem.GetParentPath(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.
Retourne le chemin d'accès parent du chemin d'accès fourni.
public:
static System::String ^ GetParentPath(System::String ^ path);
public static string GetParentPath (string path);
static member GetParentPath : string -> string
Public Shared Function GetParentPath (path As String) As String
Paramètres
- path
- String
Chemin d'accès à examiner.
Retours
Chemin d'accès parent du chemin d'accès fourni.
Exceptions
Le chemin d'accès n'a pas de chemin parent car il s'agit d'un chemin d'accès racine.
path
a la valeur Nothing
.
Le chemin d'accès dépasse la longueur maximale définie par le système.
Un nom de fichier ou de dossier du chemin d'accès contient un signe deux-points (:) ou n'a pas un format correct.
Exemples
Cet exemple obtient le chemin d’accès parent pour C:\Backups\Tmp\Test
.
Dim strPath = My.Computer.FileSystem.GetParentPath("C:\backups\tmp\test")
MsgBox(strPath)
Remarques
Il s’agit d’une opération de chaîne ; le système de fichiers n’est pas examiné.