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

createSymbolicLink(atPath:withDestinationPath:)

Creates a symbolic link that points to the specified destination. 指定された目的地を指すシンボリックリンクを作成します。

Declaration 宣言

func createSymbolicLink(atPath path: String, 
    withDestinationPath destPath: String) throws

Parameters パラメータ

path

The path at which to create the new symbolic link. The last path component is used as the name of the link. このパスで新しいシンボリックリンクを作成することになります。最後のパス構成要素は、リンクの名前として使われます。

destPath

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

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 path. シンボリックリンクが作成されたならばtrueまたはエラーが発生したならばfalse。このメソッドはまたfalseを、もしファイル、ディレクトリ、またはリンクが既にpathで存在するならば返します。

Discussion 議論

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

See Also 参照

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

Related Documentation 関連文書