diff --git a/Source/NSFileManager.m b/Source/NSFileManager.m index 7d83999c7..ebba409d8 100644 --- a/Source/NSFileManager.m +++ b/Source/NSFileManager.m @@ -1323,10 +1323,17 @@ - (NSString*) currentDirectoryPath /** * Copies the file or directory at source to destination, using a - * handler object which should respond to + * handler object which may respond to * [NSObject(NSFileManagerHandler)-fileManager:willProcessPath:] and * [NSObject(NSFileManagerHandler)-fileManager:shouldProceedAfterError:] * messages.
+ * If the handler responds to the first message, it is used to inform the + * handler when an item is about to be copied. If the handler responds + * to the second message, it is used to ask the handler whether to + * continue with the copy after an error (when there is no handler the + * processing stops at the point when an error occurs).
+ * Symbolic links are copied themselved rather than causing the items + * they link to be copied.
* Will not copy to a destination which already exists. */ - (BOOL) copyPath: (NSString*)source @@ -1460,7 +1467,12 @@ - (BOOL) copyItemAtURL: (NSURL*)src * handler object which should respond to * [NSObject(NSFileManagerHandler)-fileManager:willProcessPath:] and * [NSObject(NSFileManagerHandler)-fileManager:shouldProceedAfterError:] - * messages. + * messages.
+ * If the handler responds to the first message, it is used to inform the + * handler when an item is about to be moved. If the handler responds + * to the second message, it is used to ask the handler whether to + * continue with the move after an error (when there is no handler the + * processing stops at the point when an error occurs).
* Will not move to a destination which already exists.
*/ - (BOOL) movePath: (NSString*)source diff --git a/Version b/Version index 2683d5407..a51abc7c8 100644 --- a/Version +++ b/Version @@ -9,7 +9,7 @@ MAJOR_VERSION=1 MINOR_VERSION=30 SUBMINOR_VERSION=0 # numeric value should match above -VERSION_NUMBER=129.0 +VERSION_NUMBER=130.0 GNUSTEP_BASE_VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${SUBMINOR_VERSION} VERSION=${GNUSTEP_BASE_VERSION}