The example given in the data-frame documentation:
(data :antigua :system :rdata :directory :daag :type :csv)
returns on Linux/SBCL.
debugger invoked on a SB-EXT:FILE-DOES-NOT-EXIST in thread #<THREAD tid=1406 "main thread" RUNNING {1200030003}>: The file #P"RDATA:DAAG;ANTIGUA.CSV.NEWEST" does not exist: No such file or directory
Type HELP for debugger help, or (SB-EXT:EXIT) to exit from SBCL.
restarts (invokable by number or by possibly-abbreviated name):
0: [CREATE ] Reopen with :if-does-not-exist :create
1: [CONTINUE ] Retry opening.
2: [USE-VALUE] Try opening a different file.
3: [ABORT ] Exit debugger, returning to top level.
(SB-IMPL::%OPEN-ERROR #P"RDATA:DAAG;ANTIGUA.CSV.NEWEST" 2 :IGNORE-THIS-ARG :ERROR)
It looks like appending .NEWEST is the issue. This works on MS Windows.
The example given in the data-frame documentation:
(data :antigua :system :rdata :directory :daag :type :csv)returns on Linux/SBCL.
It looks like appending .NEWEST is the issue. This works on MS Windows.