Delete a file, return true if the file exists.
true
bool delete(String filename) { final f = File(join(_root.path, filename)); if (f.existsSync()) { f.deleteSync(); return true; } return false; }