Filename.st
changeset 192 3b0eb8864842
parent 174 9e273c60e785
child 195 515af3696a5c
--- a/Filename.st	Fri Oct 28 04:05:01 1994 +0100
+++ b/Filename.st	Fri Oct 28 04:06:40 1994 +0100
@@ -20,7 +20,7 @@
 COPYRIGHT (c) 1992 by Claus Gittinger
 	     All Rights Reserved
 
-$Header: /cvs/stx/stx/libbasic/Filename.st,v 1.14 1994-10-28 01:23:10 claus Exp $
+$Header: /cvs/stx/stx/libbasic/Filename.st,v 1.15 1994-10-28 03:06:40 claus Exp $
 '!
 
 !Filename class methodsFor:'documentation'!
@@ -41,7 +41,7 @@
 
 version
 "
-$Header: /cvs/stx/stx/libbasic/Filename.st,v 1.14 1994-10-28 01:23:10 claus Exp $
+$Header: /cvs/stx/stx/libbasic/Filename.st,v 1.15 1994-10-28 03:06:40 claus Exp $
 "
 !
 
@@ -487,7 +487,8 @@
 !
 
 remove
-    "remove the file - the argument must be convertable to a String"
+    "remove the file - the argument must be convertable to a String.
+     Return true if sucessfull, false if not."
 
     ^ OperatingSystem removeFile:nameString
 
@@ -498,7 +499,8 @@
 !
 
 renameTo:newName
-    "rename the file - the argument must be convertable to a String"
+    "rename the file - the argument must be convertable to a String.
+     Return true if sucessfull, false if not."
 
     ^ OperatingSystem renameFile:nameString to:(newName asString)