- fileManager:shouldRemoveItemAtPath:
- fileManager:shouldProceedAfterError:removingItemAtURL:
- fileManager:shouldProceedAfterError:removingItemAtPath:
Availability 有効性
Technology
- (BOOL)fileManager:(NSFileManager
*)fileManager
shouldRemoveItemAtURL:(NSURL
*)URL;
fileManager
The file manager object that is attempting to remove the file or directory. ファイルまたはディレクトリの除去を試みるファイルマネージャオブジェクト。
URL
The URL indicating the file or directory that the file manager is attempting to delete. ファイルマネージャが削除を試みているファイルまたはディレクトリを指し示すURL。
YES
if the specified item should be removed or NO
if it should not be removed.
指定された項目が除去されるすべきならば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 and is preferred over that method in macOS 10.6 and later.
このメソッドは、file
メソッドと同じ業務を実行して、そのメソッドより、macOS 10.6以降では好まれます。
- fileManager:shouldRemoveItemAtPath:
- fileManager:shouldProceedAfterError:removingItemAtURL:
- fileManager:shouldProceedAfterError:removingItemAtPath:
- removeItemAtPath:error:
- removeItemAtURL:error: