- createSymbolicLinkAtURL:withDestinationURL:error:
- linkItemAtURL:toURL:error:
- linkItemAtPath:toPath:error:
- destinationOfSymbolicLinkAtPath:error:
Availability 有効性
Technology
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. リンクによって指し示される項目を含んでいるパス。言い換えれば、これはリンクの行き先です。
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
をあなたがエラー情報を望まないならば渡してください。
YES
if the symbolic link was created or NO
if an error occurred. This method also returns NO
if a file, directory, or link already exists at path
.
シンボリックリンクが作成されたならばYES
またはエラーが発生したならばNO
。このメソッドはまたNO
を、もしファイル、ディレクトリ、またはリンクが既にpath
で存在するならば返します。
This method does not traverse symbolic links contained in dest
, 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.
このメソッドは、dest
の中に含まれるシンボリックリンクを辿らず、まだ存在しない場所に対するシンボリックリンクを作成することを可能にします。また、path
での最後のパス構成要素がシンボリックリンクならば、そのリンクはたどられません。
Handling Errors in Swift: Swiftでのエラー処理:
In Swift, this method returns Void
and is marked with the throws
keyword to indicate that it throws an error in cases of failure.
Swiftでは、このメソッドはVoid
を返します、そして失敗の場合にエラーをスローすることを指し示すために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:
- linkItemAtURL:toURL:error:
- linkItemAtPath:toPath:error:
- destinationOfSymbolicLinkAtPath:error:
- removeItemAtPath:error: