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

linkItem(atPath:toPath:)

Creates a hard link between the items at the specified paths. 指定されたパスでの項目それらの間のハードリンクを作成します。

Declaration 宣言

func linkItem(atPath srcPath: String, 
       toPath dstPath: String) throws

Parameters パラメータ

srcPath

The path that specifies the item you wish to link to. The value in this parameter must not be nil. あなたがそれに対してリンクすることを願う項目を指定するパス。このパラメータの中の値は、nilであってはいけません。

dstPath

The path that identifies the location where the link will be created. The value in this parameter must not be nil. そこでリンクが作成される場所を識別するパス。このパラメータの中の値は、nilであってはいけません。

Return Value 戻り値

true if the hard link was created or false if an error occurred. This method also returns false if a file, directory, or link already exists at dstPath. ハードリンクが作成されたならばtrueまたはエラーが発生したならばfalse。このメソッドはまたfalseを、ファイル、ディレクトリ、またはリンクが既にdstPathで存在するならば返します。

Discussion 議論

Use this method to create hard links between files in the current file system. If srcPath is a directory, this method creates a new directory at dstPath and then creates hard links for the items in that directory. If srcPath is (or contains) a symbolic link, the symbolic link is copied to the new location and not converted to a hard link. このメソッドを使ってハードリンクをファイル間に現在のファイルシステムにおいて作成してください。srcPathがディレクトリならば、このメソッドは新しいディレクトリをdstPathで作成して、それからハードリンクをそのディレクトリの中の項目に対して作成します。srcPathが(または含まれるものが)シンボリックリンクならば、そのシンボリックリンクが新しい場所にコピーされ、ハードリンクに変換されません。

Prior to linking each item, the file manager asks its delegate if it should actually create the link. It does this by calling the fileManager(_:shouldLinkItemAt:to:) method; if that method is not implemented it calls the fileManager(_:shouldLinkItemAtPath:toPath:) method instead. If the delegate method returns true, or if the delegate does not implement the appropriate methods, the file manager creates the hard link. If there is an error linking one out of several items, the file manager may also call the delegate’s fileManager(_:shouldProceedAfterError:linkingItemAt:to:) or fileManager(_:shouldProceedAfterError:linkingItemAtPath:toPath:) method to determine how to proceed. 各項目をリンクするに先だって、ファイルマネージャは、それが実際にリンクを作成するべきかそれの委任先に尋ねます。それはこれをfileManager(_:shouldLinkItemAt:to:)メソッドを呼び出すことによって行います; そのメソッドが実装されていないならばそれはfileManager(_:shouldLinkItemAtPath:toPath:)メソッドを代わりに呼び出します。委任先メソッドがtrueを返すならば、または委任先が適切なメソッドを実装しないならば、ファイルマネージャはハードリンクを作成します。項目のコピーに関してエラーがあるならば、ファイルマネージャはまた委任先の持つfileManager(_:shouldProceedAfterError:linkingItemAt:to:)またはfileManager(_:shouldProceedAfterError:linkingItemAtPath:toPath:)メソッドを呼び出してどのように続けるか決定します。

See Also 参照

Creating Symbolic and Hard Links シンボリックおよびハードリンクを作成する