- createSymbolicLinkAtURL:withDestinationURL:error:
- createSymbolicLinkAtPath:withDestinationPath:error:
- linkItemAtURL:toURL:error:
- linkItemAtPath:toPath:error:
Availability 有効性
Technology
path
The path of a file or directory. ファイルまたはディレクトリのパス。
error
If an error occurs, upon return contains an NSError
object that describes the problem. Pass NULL
if you do not want error information.
エラーが発生するならば、戻りでは、問題を記述するNSError
オブジェクトを含みます。NULL
をあなたがエラー情報を望まないならば渡してください。
An NSString
object containing the path of the directory or file to which the symbolic link path
refers, or nil
upon failure. If the symbolic link is specified as a relative path, that relative path is returned.
あるNSString
オブジェクト、それはそれに対してシンボリックリンクpath
が言及するディレクトリまたはファイルのパスを含んでいます、またはnil
を失敗では。シンボリックリンクが相対パスとして指定されるならば、その相対パスが返されます。
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エラーパラメータについてで記述されるように。
- createSymbolicLinkAtURL:withDestinationURL:error:
- createSymbolicLinkAtPath:withDestinationPath:error:
- linkItemAtURL:toURL:error:
- linkItemAtPath:toPath:error: