- fileManager:shouldCopyItemAtURL:toURL:
- fileManager:shouldProceedAfterError:copyingItemAtURL:toURL:
- fileManager:shouldProceedAfterError:copyingItemAtPath:toPath:
Availability 有効性
Technology
- (BOOL)fileManager:(NSFileManager
*)fileManager
shouldCopyItemAtPath:(NSString
*)srcPath
toPath:(NSString
*)dstPath;
fileManager
The file manager object that is attempting to copy the file or directory. ファイルまたはディレクトリのコピーを試みているファイルマネージャオブジェクト。
srcPath
The path to the file or directory that the file manager wants to copy. ファイルマネージャがコピーしようとするファイルまたはディレクトリへのパス。
dstPath
The new path for the copied file or directory. コピーされるファイルまたはディレクトリに対する新しいパス。
YES
if the item should be copied or NO
if the file manager should stop copying items associated with the current operation. If you do not implement this method, the file manager assumes a response of YES
.
項目がコピーされるべきならばYES
またはファイルマネージャが現在の演算と結び付けられる項目のコピーを中止すべきならばNO
。あなたがこのメソッドを実装しないならば、ファイルマネージャは応答はYES
だと決めてかかります。
This method is called once for each item that needs to be copied. Thus, for a directory, this method is called once for the directory and once for each item in the directory. このメソッドは、コピーされることが必要な各項目に対して一度だけ呼び出されます。したがって、ディレクトリに対して、このメソッドはそのディレクトリに対して一度だけ、そしてディレクトリの中の項目それぞれに対して一度呼び出されます。
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:shouldCopyItemAtURL:toURL:
- fileManager:shouldProceedAfterError:copyingItemAtURL:toURL:
- fileManager:shouldProceedAfterError:copyingItemAtPath:toPath:
- copyItemAtPath:toPath:error:
- copyItemAtURL:toURL:error: