File.CreateSymbolicLink(String, String) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
创建由 path
标识的文件符号链接,该链接指向 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
参数
- path
- String
应在其中创建符号链接的路径。
- pathToTarget
- String
符号链接指向的目标的路径。
返回
包装 FileInfo 新创建的文件符号链接的 实例。
例外
path
或 pathToTarget
为 null
。