- fileManager:shouldRemoveItemAtURL:
- fileManager:shouldRemoveItemAtPath:
- fileManager:shouldProceedAfterError:removingItemAtURL:
Availability 有効性
Technology
- (BOOL)fileManager:(NSFileManager
*)fileManager
shouldProceedAfterError:(NSError
*)error
removingItemAtPath:(NSString
*)path;
fileManager
The file manager object that attempted to remove the item. 項目の除去を試みたファイルマネージャオブジェクト。
error
The error that occurred during the attempt to copy. コピーの試みの間に発生したエラー。
path
The path for the file or directory that the file manager tried to delete. ファイルマネージャが削除しようとしたファイルまたはディレクトリに対するパス。
YES
if the operation should proceed or NO
if it should be aborted. If you do not implement this method, the file manager assumes a response of NO
.
操作が続行すべきならばYES
またはそれが中止されるべきならばNO
。あなたがこのメソッドを実装しないならば、ファイルマネージャは応答はNO
だと決めてかかります。
The file manager calls this method when there is a problem deleting the item to the specified location. If you return YES
, the file manager continues deleting any remaining items and ignores the error.
ファイルマネージャは、指定された場所に対して項目を削除することに問題がある場合に、このメソッドを呼び出します。あなたがYES
を返すならば、ファイルマネージャは何らかの残っている項目を消去することを継続します、そしてエラーを無視します。
This method performs the same task as the file
method, which is preferred over this method in macOS 10.6 and later.
このメソッドは、macOS 10.6以降ではこのメソッドより好まれるfile
メソッドと同じ業務を実行します。
- fileManager:shouldRemoveItemAtURL:
- fileManager:shouldRemoveItemAtPath:
- fileManager:shouldProceedAfterError:removingItemAtURL:
- removeItemAtPath:error:
- removeItemAtURL:error: