An NSFileManager object sends this message if an error occurs during an attempt to copy to a given URL.
Original signature is '- (BOOL)fileManager:(NSFileManager *)fileManager shouldProceedAfterError:(NSError *)error copyingItemAtURL:(NSURL *)srcURL toURL:(NSURL *)dstURL'
Available in Mac OS X v10.6 and later.

C# | Visual Basic | Visual C++ |
public delegate bool FileManagerShouldProceedAfterErrorCopyingItemAtURLToURLEventHandler( NSFileManager fileManager, NSError error, NSURL srcURL, NSURL dstURL )
Public Delegate Function FileManagerShouldProceedAfterErrorCopyingItemAtURLToURLEventHandler ( _ fileManager As NSFileManager, _ error As NSError, _ srcURL As NSURL, _ dstURL As NSURL _ ) As Boolean
public delegate bool FileManagerShouldProceedAfterErrorCopyingItemAtURLToURLEventHandler( NSFileManager^ fileManager, NSError^ error, NSURL^ srcURL, NSURL^ dstURL )

- fileManager (NSFileManager)
- The NSFileManager object that sent this message.
- error (NSError)
- The error that occurred during the attempt to copy.
- srcURL (NSURL)
- The URL or a file or directory that fileManager is attempting to copy.
- dstURL (NSURL)
- The URL or a file or directory to which fileManager is attempting to copy.

YES if the operation should proceed, otherwise NO.

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