shashi / FileTrees.jl

Parallel computing with a tree of files metaphor
http://shashi.biz/FileTrees.jl
Other
88 stars 6 forks source link

Fetch value stored at node in Windows 10 #31

Closed ixzh closed 3 years ago

ixzh commented 3 years ago

I have a dataframe stored at the following file node. but unable to retrieve it. I'm not sure if it is a bug...

And also on windows, absolute file path with two backslashes (\) were not regconised. I will try to attached a screenshot for this as well.

image

shashi commented 3 years ago

You need values(tree) here to get all the values in a tree.

get(tree) returns tree.value which has no value in this case...

ixzh commented 3 years ago

Thanks it works!

I read the documentation, didn't find the values function in the API. Is the documentation up to date?