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

fileManager:shouldCopyItemAtPath:toPath:

Asks the delegate if the file manager should copy the specified item to the new path. ファイルマネージが指定された項目を新しいパスへコピーするべきか、委任先に尋ねます。

Declaration 宣言

- (BOOL)fileManager:(NSFileManager *)fileManager 
shouldCopyItemAtPath:(NSString *)srcPath 
             toPath:(NSString *)dstPath;

Parameters パラメータ

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. コピーされるファイルまたはディレクトリに対する新しいパス。

Return Value 戻り値

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

Discussion 議論

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 fileManager:shouldCopyItemAtURL:toURL: method, which is preferred over this method in macOS 10.6 and later. このメソッドは、macOS 10.6以降ではこのメソッドより好まれるfileManager:shouldCopyItemAtURL:toURL:メソッドと同じ業務を実行します。

See Also 参照

Copying an Item

Related Documentation 関連文書