lua-csv icon indicating copy to clipboard operation
lua-csv copied to clipboard

I had to add line to open make this work

Open Deadline-Dan opened this issue 9 months ago • 1 comments

in function open

had to change the line local file, message = io.open(filename, "r") to local filePath = system.pathForFile( filename, path ) local file, message = io.open(filePath, "r")

to get the file to open.

Thanks, Dan

Deadline-Dan avatar Apr 27 '25 14:04 Deadline-Dan