Write binary data to file, return the path.
String write(String filename, List<int> bytes) { final f = File(join(_root.path, filename)); f.writeAsBytesSync(bytes); return f.path; }