An NSFileManager object sends this message if an error occurs during an attempt to delete a given path.
Original signature is '- (BOOL)fileManager:(NSFileManager *)fileManager shouldProceedAfterError:(NSError *)error removingItemAtPath:(NSString *)path'
Available in Mac OS X v10.5 and later.

C# | Visual Basic | Visual C++ |
public bool FileManagerShouldProceedAfterErrorRemovingItemAtPathMessage( NSFileManager fileManager, NSError error, NSString path )
Public Function FileManagerShouldProceedAfterErrorRemovingItemAtPathMessage ( _ fileManager As NSFileManager, _ error As NSError, _ path As NSString _ ) As Boolean
public: bool FileManagerShouldProceedAfterErrorRemovingItemAtPathMessage( NSFileManager^ fileManager, NSError^ error, NSString^ path )

- fileManager (NSFileManager)
- The NSFileManager object that sent this message.
- error (NSError)
- The error that occurred during the attempt to copy.
- path (NSString)
- The path or a file or directory that fileManager is attempting to delete.

YES if the operation should proceed, otherwise NO.

- Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)