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

fileManager:shouldLinkItemAtURL:toURL:

Asks the delegate if a hard link should be created between the items at the two URLs. 2つのURLでの項目間にハードリンクが作成されるべきか、委任先に尋ねます。

Declaration 宣言

- (BOOL)fileManager:(NSFileManager *)fileManager 
shouldLinkItemAtURL:(NSURL *)srcURL 
              toURL:(NSURL *)dstURL;

Parameters パラメータ

fileManager

The file manager object that is attempting to create the link. リンクの作成を試みているファイルマネージャオブジェクト。

srcURL

The URL identifying the new hard link to be created. 作成される新しいハードリンクを識別するURL。

dstURL

The URL identifying the destination of the link. リンクの行き先を識別するURL。

Return Value 戻り値

YES if the link should be created or NO if it should not be created. リンクが作成されるすべきならばYESまたはそれが作成されるべきでないならばNO

Discussion 議論

If the item specified by destURL is a directory, returning NO prevents links from being created to both the directory and its children. destURLによって指定された項目がディレクトリならば、NOを返すことは、ディレクトリとそれの子の両方が作成されることを防ぎます。

This method performs the same task as the fileManager:shouldLinkItemAtPath:toPath: method and is preferred over that method in macOS 10.6 and later. このメソッドは、fileManager:shouldLinkItemAtPath:toPath:メソッドと同じ業務を実行して、そのメソッドより、macOS 10.6以降では好まれます。

See Also 参照

Linking an Item 項目をリンクする

Related Documentation 関連文書