File.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 fichier 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
Chemin de la cible vers laquelle pointe le lien symbolique.
Retours
Une FileInfo instance qui encapsule le lien symbolique de fichier nouvellement créé.
Exceptions
path
ou pathToTarget
est null
.
path
ou pathToTarget
est vide.
-ou-
path
ou pathToTarget
contient un null
caractère.
Un fichier ou un répertoire existe déjà à l’emplacement de path
.
- ou -
Une erreur d'E/S s'est produite.