Julian Rohrhuber wrote:
>> and then stick it in in the various String methods which deal with paths?
>
> shouldn't this happen in String:standardizePath ?
no, because spaces need only be escaped when the path is merged into a
shell commandline.
File("/Users/sk/Foo Bar", "r")
and
File("/Users/sk/Foo\\ Bar", "r")
do not do the same thing ...
<sk>