How do I open a file using specific path? See example
var f = new File("Z:/stockdata/indu.csv");
This works fine, but not what I want.
var f = new File("indu.csv");
var f = new File("Z:/stockdata/indu.csv");
This works fine, but not what I want.
var f = new File("indu.csv");
Comment