- fileManager:shouldRemoveItemAtURL:
- fileManager:shouldProceedAfterError:removingItemAtURL:
- fileManager:shouldProceedAfterError:removingItemAtPath:
Availability 有効性
Technology
- (BOOL)fileManager:(NSFileManager
*)fileManager
shouldRemoveItemAtPath:(NSString
*)path;
fileManager
The file manager object that is attempting to remove the file or directory. ファイルまたはディレクトリの除去を試みるファイルマネージャオブジェクト。
path
The path to the file or directory that the file manager is attempting to delete. ファイルマネージャが削除を試みているファイルまたはディレクトリへのパス。
YES
if the specified item should be deleted or NO
if it should not be deleted.
指定された項目が削除されるすべきならばYES
またはそれが削除されるべきでないならばNO
。
Removed items are deleted immediately and not placed in the Trash. If the specified item is a directory, returning NO
prevents both the directory and its children from being deleted.
除去された項目は、直ぐに削除されます、そしてゴミ箱に置かれません。指定された項目がディレクトリならば、NO
を返すことは、ディレクトリとそれの子の両方が削除されるのを防ぎます。
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:shouldProceedAfterError:removingItemAtURL:
- fileManager:shouldProceedAfterError:removingItemAtPath:
- removeItemAtPath:error:
- removeItemAtURL:error: