Hi there,

I have some problems with gretl (snapshop on windows 8) automatically adding its 'shelldir' to a file path:

<hansl>
eval shelldir
open abdata.gdt
list xList = YEAR IND CAP
store "testme.csv" --csv xList                     # writes file in 'shelldir' -> ok
string readme = readfile("testme2.csv")   # reads file in 'shelldir' -> ok
print readme
open "testme.csv"                                       # fails to read file in 'shelldir' -> why?
string file = shelldir
file +="\testme.csv"
open @file                                                    # works
<hansl>

Cheers
Leon