Hi there. I am a long time user of VAST recently moved to Pharo. I have a
directory that contains 20 JSON items. I am using the following code to load
all of them into a collection.
bucketList
| top fileDirectory bucketList nameList |
top := FileSystem disk workingDirectory.
fileDirectory := top / 'TinyKVDB' / self bucket.
bucketList := fileDirectory children.
nameList := SortedCollection new.
bucketList
do: [ :each |
nameList add: each asString ] .
^ nameList
The code is only loading 18 of the items in the directory. I cannot see that
there is anything different between there 18 and the other 2. Can anyone give
me some clues here?
David
TotallyObjects