- fileManager:shouldCopyItemAtURL:toURL:
- fileManager:shouldCopyItemAtPath:toPath:
- fileManager:shouldProceedAfterError:copyingItemAtPath:toPath:
Availability 有効性
Technology
- (BOOL)fileManager:(NSFileManager
*)fileManager
shouldProceedAfterError:(NSError
*)error
copyingItemAtURL:(NSURL
*)srcURL
toURL:(NSURL
*)dstURL;
fileManager
The file manager object that attempted to copy the item. 項目のコピーを試みたファイルマネージャオブジェクト。
error
The error that occurred during the attempt to copy. コピーの試みの間に発生したエラー。
srcURL
The URL or a file or directory that file
is attempting to copy.
file
がコピーを試みたファイルまたはディレクトリへのURL。
dstURL
The URL or a file or directory to which file
is attempting to copy.
それに向けてfile
がコピーを試みたファイルまたはディレクトリへのURL。
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 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 file
method and is preferred over that method in macOS 10.6 and later.
このメソッドは、file
メソッドと同じ業務を実行して、そのメソッドより、macOS 10.6以降では好まれます。
- fileManager:shouldCopyItemAtURL:toURL:
- fileManager:shouldCopyItemAtPath:toPath:
- fileManager:shouldProceedAfterError:copyingItemAtPath:toPath:
- copyItemAtPath:toPath:error:
- copyItemAtURL:toURL:error: