Instance Method インスタンスメソッド

createSymbolicLink(at:withDestinationURL:)

Creates a symbolic link at the specified URL that points to an item at the given URL. 指定されたURLでシンボリックリンクを作成します、それは与えられたURLでの項目を指し示します。

Declaration 宣言

func createSymbolicLink(at url: URL, 
     withDestinationURL destURL: URL) throws

Parameters パラメータ

url

The file URL at which to create the new symbolic link. The last path component of the URL issued as the name of the link. このファイルURLで新しいシンボリックリンクを作成することになります。URLの最後のパス構成要素は、リンクの名前として支給されます。

destURL

The file URL that contains the item to be pointed to by the link. In other words, this is the destination of the link. リンクによって指し示される項目を含んでいるファイルURL。言い換えれば、これはリンクの行き先です。

Return Value 戻り値

true if the symbolic link was created or false if an error occurred. This method also returns false if a file, directory, or link already exists at url. シンボリックリンクが作成されたならばtrueまたはエラーが発生したならばfalse。このメソッドはまたfalseを、もしファイル、ディレクトリ、またはリンクが既にurlで存在するならば返します。

Discussion 議論

This method does not traverse symbolic links contained in destURL, making it possible to create symbolic links to locations that do not yet exist. Also, if the final path component in url is a symbolic link, that link is not followed. このメソッドは、destURLの中に含まれるシンボリックリンクを辿らず、まだ存在しない場所に対するシンボリックリンクを作成することを可能にします。また、urlでの最後のパス構成要素がシンボリックリンクならば、そのリンクはたどられません。

See Also 参照

Creating Symbolic and Hard Links シンボリックおよびハードリンクを作成する