Filename.st
changeset 5596 4168727b2da4
parent 5595 b80d12c4983b
child 5597 8a78f65b2df1
--- a/Filename.st	Sat Sep 09 17:30:54 2000 +0200
+++ b/Filename.st	Sat Sep 09 17:33:21 2000 +0200
@@ -1770,6 +1770,7 @@
 removeDirectory
     "remove the directory.
      Raises an exception if not successful (or if its not a directory).
+     Use #remove if it is not known if the receiver is a directory or file.
      Use #recursiveRemove in order to (recursively) remove non empty directories."
 
     |ok|
@@ -1804,7 +1805,9 @@
 
 removeFile
     "remove the file.
-     Raises an exception if not successful (or if its not a file)."
+     Raises an exception if not successful (or if its not a file).
+     Use #remove if it is not known if the receiver is a directory or file.
+     Use #recursiveRemove in order to (recursively) remove non empty directories."
 
     |ok|
 
@@ -3716,6 +3719,6 @@
 !Filename class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Filename.st,v 1.185 2000-09-09 15:30:54 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Filename.st,v 1.186 2000-09-09 15:33:21 cg Exp $'
 ! !
 Filename initialize!