Directory.CreateSymbolicLink(String, 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.
Crée un lien symbolique de répertoire identifié par path
qui pointe vers pathToTarget
.
public:
static System::IO::FileSystemInfo ^ CreateSymbolicLink(System::String ^ path, System::String ^ pathToTarget);
public static System.IO.FileSystemInfo CreateSymbolicLink (string path, string pathToTarget);
static member CreateSymbolicLink : string * string -> System.IO.FileSystemInfo
Public Shared Function CreateSymbolicLink (path As String, pathToTarget As String) As FileSystemInfo
Paramètres
- path
- String
Chemin d’accès où le lien symbolique doit être créé.
- pathToTarget
- String
Répertoire cible du lien symbolique.
Retours
Instance DirectoryInfo qui encapsule le lien symbolique de répertoire nouvellement créé.
Exceptions
path
ou pathToTarget
est null
.
path
ou pathToTarget
est vide.
-ou-
path
ou pathToTarget
contient des caractères de chemin d’accès non valides.
Un fichier ou un répertoire existe déjà à l’emplacement de path
.
- ou -
Une erreur d'E/S s'est produite.