func createSymbolicLink (at: URL, withDestinationURL : URL)
func linkItem (at: URL, to: URL)
func linkItem (atPath : String, toPath : String)
func destinationOfSymbolicLink (atPath : String) -> String
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. リンクによって指し示される項目を含んでいるパス。言い換えれば、これはリンクの行き先です。
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
で存在するならば返します。
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エラーパラメータについてで記述されるように。
func createSymbolicLink (at: URL, withDestinationURL : URL)
func linkItem (at: URL, to: URL)
func linkItem (atPath : String, toPath : String)
func destinationOfSymbolicLink (atPath : String) -> String
func removeItem (atPath : String)