Re: [Pharo-dev] DiskStore question

2017-06-08 Thread Rajula Vineet
Sven Thank you. Ben thanks a lot. Will go through it. Rajula -- View this message in context: http://forum.world.st/DiskStore-question-tp4950122p4950423.html Sent from the Pharo Smalltalk Developers mailing list archive at Nabble.com.

Re: [Pharo-dev] DiskStore question

2017-06-07 Thread Guillermo Polito
tx Ben :) go Rajula go! On Wed, Jun 7, 2017 at 6:07 PM, Ben Coman wrote: > Just an aside (slightly off topic) for GSoC students and other newcomers > to understand the difference between: instance-variables, class-variables, > and class-instance-variables; > my post here

Re: [Pharo-dev] DiskStore question

2017-06-07 Thread Ben Coman
Just an aside (slightly off topic) for GSoC students and other newcomers to understand the difference between: instance-variables, class-variables, and class-instance-variables; my post here provides an interesting exercise...

Re: [Pharo-dev] DiskStore question

2017-06-07 Thread Sven Van Caekenberghe
Primitives is a class variable of DiskStore, it contains an instance of FilePluginPrims. > On 7 Jun 2017, at 11:30, Rajula Vineet wrote: > > Hi, > > I have been looking at the DiskStore class and I came across the method > defaultWorkingDirectory. > >

[Pharo-dev] DiskStore question

2017-06-07 Thread Rajula Vineet
Hi, I have been looking at the DiskStore class and I came across the method defaultWorkingDirectory. defaultWorkingDirectory | pathString | pathString := Primitives decode: Primitives imageFile. ^ (self pathFromString: pathString) parent I didn`t get the implementation