'From Squeakland 3.8.5976 of 25 August 2004 [latest update: #388] on 18 February 2005 at 12:23:56 pm'! "Change Set: asFileNameAgain Date: 18 February 2005 Author: Yoshiki Ohshima I can't come up with a logically correct asFileName method. At least, this does something."! !MultiString methodsFor: 'converting' stamp: 'yo 2/18/2005 00:23'! asFileName "Answer a String made up from the receiver that is an acceptable file name." | string checkedString | string _ FileDirectory checkName: self fixErrors: true. checkedString _ (FilePath pathName: string) asSystemPathName. ^ (FilePath pathName: checkedString isEncoded: true) asSqueakPathName. ! !