Get file path by filename, return null if not exist.
null
String? getFilePath(String filename) { final f = File(join(_root.path, filename)); return f.existsSync() ? f.path : null; }