GtfsWriter writer = new GtfsWriter();
writer.setOutputLocation(_outputPath);
DefaultEntitySchemaFactory schemaFactory = new DefaultEntitySchemaFactory();
schemaFactory.addFactory(GtfsEntitySchemaFactory.createEntitySchemaFactory());
writer.setEntitySchemaFactory(schemaFactory);
writer.run(_dao);
}
private void getApplicableFiles(File path, List<File> applicableFiles) {
_log.info("Scanning path: " + path);
if (path.isDirectory()) {