}
// And finally as a fall-back let's look in the module's resource dir...
final File target = new File(new File(car.getParentFile(), "module-resources"), fullPath);
if (target.exists() && target.isFile() && target.canRead()) {
return new FileResource(target);
}
}
return null;
}