Re: [Pharo-users] meaning of #workingDirectory in in-memory file system

2016-04-21 Thread Damien Pollet
In a unix system, there is only one filesystem. Meaning: if you have several disks or partitions, either they are mounted in The Unique Filesystem, or they are not mounted and are just a blob of some gigabytes. The working directory is a per-process property, not per-filesystem. (except that window

[Pharo-users] meaning of #workingDirectory in in-memory file system

2016-04-21 Thread Peter Uhnák
fs := FileSystem memory. fs workingDirectory "memory:///". What is the conceptual meaning of #workingDirectory here? Shouldn't it just throw an error for memory FileStore as it makes no sense? I.e. I didn't launch any image from memory. Peter