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

fileManager(_:shouldCopyItemAtPath:toPath:)

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

Declaration 宣言

optional func fileManager(_ fileManager: FileManager, 
     shouldCopyItemAtPath srcPath: String, 
                   toPath dstPath: String) -> Bool

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 戻り値

true if the item should be copied or false 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 true. 項目がコピーされるべきならばtrueまたはファイルマネージャが現在の演算と結び付けられる項目のコピーを中止すべきならばfalse。あなたがこのメソッドを実装しないならば、ファイルマネージャは応答はtrueだと決めてかかります。

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

See Also 参照

Copying an Item 項目のコピー

Related Documentation 関連文書