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
。