func createSymbolicLink (at: URL, withDestinationURL : URL)
func createSymbolicLink (atPath : String, withDestinationPath : String)
func linkItem (at: URL, to: URL)
func linkItem (atPath : String, toPath : String)
Availability 有効性
Technology
path
The path of a file or directory. ファイルまたはディレクトリのパス。
An NSString
object containing the path of the directory or file to which the symbolic link path
refers. If the symbolic link is specified as a relative path, that relative path is returned.
それに対してシンボリックリンクpath
が言及するディレクトリまたはファイルのパスを含んでいるNSString
オブジェクト。シンボリックリンクが相対パスとして指定されるならば、その相対パスが返されます。
Handling Errors in Swift: Swiftでのエラー処理:
In Swift, this method returns a nonoptional result and is marked with the throws
keyword to indicate that it throws an error in cases of failure.
Swiftでは、このメソッドは非オプショナルの結果を返します、そしてthrows
キーワードで印されて失敗の場合にそれがエラーをスローすることを指し示します。
You call this method in a try
expression and handle any errors in the catch
clauses of a do
statement, as described in Error Handling in The Swift Programming Language and About Imported Cocoa Error Parameters.
あなたはこのメソッドをtry
式の中で呼び出して、あらゆるエラーをdo
文のcatch
節で取り扱います、The Swift Programming Languageのエラー処理そしてインポートされるCocoaエラーパラメータについてで記述されるように。
func createSymbolicLink (at: URL, withDestinationURL : URL)
func createSymbolicLink (atPath : String, withDestinationPath : String)
func linkItem (at: URL, to: URL)
func linkItem (atPath : String, toPath : String)