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

fileManager:shouldCopyItemAtURL:toURL:

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

Declaration 宣言

- (BOOL)fileManager:(NSFileManager *)fileManager 
shouldCopyItemAtURL:(NSURL *)srcURL 
              toURL:(NSURL *)dstURL;

Parameters パラメータ

fileManager

The file manager object that is attempting to copy the file or directory. ファイルまたはディレクトリのコピーを試みているファイルマネージャオブジェクト。

srcURL

The URL of the file or directory that the file manager wants to copy. ファイルマネージャがコピーを望むファイルまたはディレクトリのURL。

dstURL

The URL specifying the location for the copied file or directory. コピーされたファイルまたはディレクトリに対する場所を識別するURL。

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

See Also 参照

Copying an Item

Related Documentation 関連文書