On 12/02, Dimitris Chloupis wrote:
> I have a startup script that loads the libraries and project I mostly use,
> including my own, but I want that script to target specific folders and its
> subfolders , is this possible ?

You can test values of `SmalltalkImage current`...

for example

(SmalltalkImage current shortImageName includesSubstring: 
'SomePartOfImageName') ifTrue: [
        "execute only for that image"
]

for folders you could check `SmalltalkImage current imagePath`, etc.

-- 
Peter

Reply via email to