On Fri, Dec 14, 2007 at 11:17:35PM +0100, Abdelrazak Younes wrote: > But I see that the check for existence is already there in > FileName::removeFile() (you introduced it right?). Trying to remove a file > that does not exist seems like a waste of time to me.
I would bet that whatever system function removeFile() is calling will return very early if the file does not exist as well. So removing the exists() call would mean less code on our side... Andre'