Check if a file exists.
bool exist(String filename) { final f = File(join(_root.path, filename)); return f.existsSync(); }