- fileManager:shouldLinkItemAtURL:toURL:
- fileManager:shouldLinkItemAtPath:toPath:
- fileManager:shouldProceedAfterError:linkingItemAtURL:toURL:
Availability 有効性
Technology
- (BOOL)fileManager:(NSFileManager
*)fileManager
shouldProceedAfterError:(NSError
*)error
linkingItemAtPath:(NSString
*)srcPath
toPath:(NSString
*)dstPath;
fileManager
The file manager object that attempted to create the link. リンクの作成を試みたファイルマネージャオブジェクト。
error
The error that occurred during the link attempt. リンクの試みの間に発生したエラー。
srcPath
The path to the attempted link location. 試みられたリンク位置へのパス。
dstPath
The path to the file or directory that was the destination of the hard link. ハードリンクの行き先だったファイルまたはディレクトリのパス。
YES
if the operation should proceed or NO
if it should be aborted. If you do not implement this method, the file manager assumes a response of NO
.
操作が続行すべきならばYES
またはそれが中止されるべきならばNO
。あなたがこのメソッドを実装しないならば、ファイルマネージャは応答はNO
だと決めてかかります。
The file manager calls this method when there is a problem creating a hard link to the item at the specified location. If you return YES
, the file manager continues creating any other links associated with the current operation and ignores the error.
ファイルマネージャは、指定された場所での項目へのハードリンクを作成することに問題がある場合に、このメソッドを呼び出します。あなたがYES
を返すならば、ファイルマネージャは現在の操作と結び付けられた何らかの他のリンクを作成することを継続します、そしてエラーを無視します。
This method performs the same task as the file
method, which is preferred over this method in macOS 10.6 and later.
このメソッドは、macOS 10.6以降ではこのメソッドより好まれるfile
メソッドと同じ業務を実行します。
- fileManager:shouldLinkItemAtURL:toURL:
- fileManager:shouldLinkItemAtPath:toPath:
- fileManager:shouldProceedAfterError:linkingItemAtURL:toURL:
- linkItemAtURL:toURL:error:
- linkItemAtPath:toPath:error: