'From Squeak3.4alpha of ''11 November 2002'' [latest update: #5125] on 3 December 2002 at 7:48:42 pm'! "Change Set: AcornDirFixes Date: 3 December 2002 Author: tim@sumeru.stanford.edu Catch a root directory being used as a path name in directoryExists: to prevent recursion. Only affects Acorn machines"! !AcornFileDirectory methodsFor: 'testing' stamp: 'tpr 12/3/2002 19:35'! directoryExists: filenameOrPath "if the path is a root,we have to treat it carefully" (filenameOrPath endsWith: '$') ifTrue:[^(FileDirectory on: filenameOrPath) exists]. ^super directoryExists: filenameOrPath! !