Re: [Pharo-users] need help with workingDirectory...

2020-05-26 Thread Cyril Ferlicot
On Tue, May 26, 2020 at 1:59 PM Cyril Ferlicot wrote: > > HI, > > You have two different things: > - working copy working directory* > - image directory > > The working copy return the folder from which the image was launched. > Most of the time it is the image directory but not all the time. >

Re: [Pharo-users] need help with workingDirectory...

2020-05-26 Thread Cyril Ferlicot
HI, You have two different things: - working copy - image directory The working copy return the folder from which the image was launched. Most of the time it is the image directory but not all the time. For example ./pharo-ui ../../test/pharo.image will have the working directory be the

Re: [Pharo-users] need help with workingDirectory...

2020-05-26 Thread Sven Van Caekenberghe
Hmm, I am getting another result: FileSystem workingDirectory. "File @ /Users/sven/Develop/Pharo/Pharo-Daily/2020-05-06" Which is correct for me. This is recent 9.0 on macOS 10.15.4 > On 26 May 2020, at 13:44, Russ Whaley wrote: > > I'm on MacOS 10.13.6, Pharo v9 (but have same issue on

[Pharo-users] need help with workingDirectory...

2020-05-26 Thread Russ Whaley
I'm on MacOS 10.13.6, Pharo v9 (but have same issue on v8). When I want to get the directory where the current image was launched, I use the following: FileSystem workingDirectory The comments from this method are: "Returns a reference to the directory from where the image was launched" What