When doing following:
var f = new File("NoSuchFile.txt");
if (!f.open("rt")) debugPrintln("open failed");
else debugPrintln("open worked");
EFS always says "open worked", even if file does not exist. I'm using eSignal 8.0. Shouldn't it return false?
var f = new File("NoSuchFile.txt");
if (!f.open("rt")) debugPrintln("open failed");
else debugPrintln("open worked");
EFS always says "open worked", even if file does not exist. I'm using eSignal 8.0. Shouldn't it return false?
Comment