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

createSymbolicLink(atPath:pathContent:)

Creates a symbolic link identified by a given path that refers to a given location. 与えられたパスによって識別されるシンボリックリンクを作成します、それは与えられた場所に言及します。

Declaration 宣言

func createSymbolicLink(atPath path: String, 
            pathContent otherpath: String) -> Bool

Parameters パラメータ

path

The path for a symbolic link. シンボリックリンクに対するパス。

otherPath

The path to which path should refer. それに対してpathが参照すべきパス。

Return Value 戻り値

true if the operation is successful, otherwise false. Returns false if a file, directory, or symbolic link identical to path already exists. 操作が成功するならばtrue、そうでないならばfalsefalseを、もし既にpathとまったく同じファイル、ディレクトリ、またはシンボリックリンクが存在するならば返します。

Discussion 議論

Creates a symbolic link identified by path that refers to the location otherPath in the file system. pathによって識別されるシンボリックリンクを作成します、それは場所otherPathをファイルシステムにおいて参照します。

Special Considerations 特別な注意事項

Because this method does not return error information, it has been deprecated as of OS X v10.5. Use createSymbolicLink(atPath:withDestinationPath:) instead. このメソッドがエラー情報を返さないことから、それはOS X v10.5現在で非推奨にされます。createSymbolicLink(atPath:withDestinationPath:)を代わりに使ってください。

See Also 参照

Deprecated Methods 非推奨メソッド

Related Documentation 関連文書