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

fileManager:shouldProceedAfterError:copyingItemAtPath:toPath:

Asks the delegate if the move operation should continue after an error occurs while copying the item at the specified path. 指定されたパスで項目をコピーしている間にエラーが発生する後で、移動操作は続行するべきか、委任先に尋ねます。

Declaration 宣言

- (BOOL)fileManager:(NSFileManager *)fileManager 
shouldProceedAfterError:(NSError *)error 
  copyingItemAtPath:(NSString *)srcPath 
             toPath:(NSString *)dstPath;

Parameters パラメータ

fileManager

The NSFileManager object that sent this message. このメッセージを送り出すNSFileManagerオブジェクト。

error

The error that occurred during the attempt to copy. コピーの試みの間に発生したエラー。

srcPath

The path or a file or directory that fileManager is attempting to copy. fileManagerがコピーを試みたパスまたはファイルまたはディレクトリ。

dstPath

The path or a file or directory to which fileManager is attempting to copy. それに向けてfileManagerがコピーを試みたパスまたはファイルまたはディレクトリ。

Return Value 戻り値

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だと決めてかかります。

Discussion 議論

The file manager calls this method when there is a problem copying the item to the specified location. If you return YES, the file manager continues copying any other items and ignores the error. ファイルマネージャは、項目を指定された場所へコピーすることに問題がある場合に、このメソッドを呼び出します。あなたがYESを返すならば、ファイルマネージャは何らかの他の項目をコピーすることを継続します、そしてエラーを無視します。

This method performs the same task as the fileManager:shouldProceedAfterError:copyingItemAtURL:toURL: method, which is preferred over this method in macOS 10.6 and later. このメソッドは、macOS 10.6以降ではこのメソッドより好まれるfileManager:shouldProceedAfterError:copyingItemAtURL:toURL:メソッドと同じ業務を実行します。

See Also 参照

Copying an Item

Related Documentation 関連文書