Instance Method
インスタンスメソッド
fileManager(_:shouldProceedAfterError:removingItemAt:)
Asks the delegate if the operation should continue after an error occurs while removing the item at the specified URL.
指定されたURLで項目を移動している間にエラーが発生する後で、操作は続行するべきか、委任先に尋ねます。
Declaration
宣言
optional func fileManager(_ fileManager: FileManager
,
shouldProceedAfterError error: Error
,
removingItemAt URL: URL
) -> Bool
Parameters
パラメータ
fileManager
The file manager object that attempted to remove the item.
項目の除去を試みたファイルマネージャオブジェクト。
error
The error that occurred while attempting to remove the item at URL
.
URL
での項目の除去を試みる間に発生したエラー。
URL
The URL for the file or directory that the file manager tried to delete.
ファイルマネージャが削除を試みたファイルまたはディレクトリへのURL。
Return Value
戻り値
true
if the operation should proceed or false
if it should be aborted. If you do not implement this method, the file manager assumes a response of false
.
操作が続行すべきならばtrue
またはそれが中止されるべきならばfalse
。あなたがこのメソッドを実装しないならば、ファイルマネージャは応答はfalse
だと決めてかかります。
Discussion
議論
The file manager calls this method when there is a problem deleting the item to the specified location. If you return true
, the file manager continues deleting any remaining items and ignores the error.
ファイルマネージャは、指定された場所に対して項目を削除することに問題がある場合に、このメソッドを呼び出します。あなたがtrue
を返すならば、ファイルマネージャは何らかの残っている項目を消去することを継続します、そしてエラーを無視します。
This method performs the same task as the fileManager(_:shouldProceedAfterError:removingItemAtPath:)
method and is preferred over that method in macOS 10.6 and later.
このメソッドは、fileManager(_:shouldProceedAfterError:removingItemAtPath:)
メソッドと同じ業務を実行して、そのメソッドより、macOS 10.6以降では好まれます。
See Also
参照
Related Documentation
関連文書