Re: [Pharo-users] How to construct a multi-part file reference

2016-05-09 Thread Sven Van Caekenberghe
> On 07 May 2016, at 12:08, Udo Schneider wrote: > > Hi Sven, > > > I always had the impression that Path is not meant for public use, > > just part of the implementation. Should it not be part of the -Public > > package then ? > I'm a bit schizophrenic on this one :-) The whole FileSystem des

Re: [Pharo-users] How to construct a multi-part file reference

2016-05-09 Thread Sven Van Caekenberghe
> On 08 May 2016, at 16:53, Nicolai Hess wrote: > > > > 2016-05-07 0:33 GMT+02:00 Johan Fabry : > Hi all, > > I have a question about the filesystem that I could not resolve using the > documentation. The problem is as follows: I have a file reference that is 2 > separate strings that I nee

Re: [Pharo-users] How to construct a multi-part file reference

2016-05-08 Thread Johan Fabry
Hi Nicolai, I don’t know if it works with both separators, but it’s simple and works on MacOS at least, so that’s good enough for me now. Thanks for pointing it out to me ! > On May 8, 2016, at 11:53, Nicolai Hess wrote: > > > > 2016-05-07 0:33 GMT+02:00 Johan Fabry

Re: [Pharo-users] How to construct a multi-part file reference

2016-05-08 Thread Johan Fabry
Hi Udo, that’s a very detailed explanation, thanks for taking the time to write it! > On May 7, 2016, at 05:46, Udo Schneider wrote: > > Hi Johan, > > I remember running into similar problems because I didn't understand the > FileSystem philosophy ... and dealing with strings and concatenatin

Re: [Pharo-users] How to construct a multi-part file reference

2016-05-08 Thread Nicolai Hess
2016-05-07 0:33 GMT+02:00 Johan Fabry : > Hi all, > > I have a question about the filesystem that I could not resolve using the > documentation. The problem is as follows: I have a file reference that is 2 > separate strings that I need to join into one complete file ref but I don’t > know how bec

Re: [Pharo-users] How to construct a multi-part file reference

2016-05-07 Thread Udo Schneider
Hi Sven, > I always had the impression that Path is not meant for public use, > just part of the implementation. Should it not be part of the -Public > package then ? I'm a bit schizophrenic on this one :-) My "first self" argues that Path as a part of the FileSystem API should indeed remain/be

Re: [Pharo-users] How to construct a multi-part file reference

2016-05-07 Thread Sven Van Caekenberghe
Hi Udo, That is a very good explanation, thank you. I always had the impression that Path is not meant for public use, just part of the implementation. Should it not be part of the -Public package then ? Maybe there are still other ways to parse a Windows path while running on a Mac or Linux ?

Re: [Pharo-users] How to construct a multi-part file reference

2016-05-07 Thread Udo Schneider
Hi Johan, I remember running into similar problems because I didn't understand the FileSystem philosophy ... and dealing with strings and concatenating them is so much easier, right? :-) After reading the chapter on FileSystem several times over and over again the IMHO most important part of

[Pharo-users] How to construct a multi-part file reference

2016-05-06 Thread Johan Fabry
Hi all, I have a question about the filesystem that I could not resolve using the documentation. The problem is as follows: I have a file reference that is 2 separate strings that I need to join into one complete file ref but I don’t know how because I don’t know what the platform’s file separa