Return a collection of directory entries for the files and directories in the directory with the given path. See primLookupEntryIn:index: for further details.
Does this class claim to be that properly active subclass of FileDirectory
for the current platform? On Acorn, the test is whether platformName
is 'RiscOS' (on newer VMs) or if the primPathNameDelimiter is $. (on
older ones), which is what we would like to use for a dirsep if only it
would work out. See pathNameDelimiter for more woeful details - then
just get on and enjoy Squeak
Acorn RiscOS uses a dot as the directory separator and has no real concept of filename extensions. We tried to make code handle this, but there are just too many uses of dot as a filename extension - so fake it out by pretending to use a slash. The file prims do conversions instead.
Sad, but pragmatic