Instance Method
インスタンスメソッド
fileManager(_:shouldCopyItemAt:to:)
Asks the delegate if the file manager should copy the specified item to the new URL.
ファイルマネージが指定された項目を新しいURLへコピーするべきか、委任先に尋ねます。
Declaration
宣言
optional func fileManager(_ fileManager: FileManager
,
shouldCopyItemAt srcURL: URL
,
to dstURL: URL
) -> Bool
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
戻り値
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(_:shouldCopyItemAtPath:toPath:)
method and is preferred over that method in macOS 10.6 and later.
このメソッドは、fileManager(_:shouldCopyItemAtPath:toPath:)
メソッドと同じ業務を実行して、そのメソッドより、macOS 10.6以降では好まれます。
See Also
参照
Related Documentation
関連文書