opts.parseArgs(CreateEmpty.class.getName(), args);
for (String arg : opts.files) {
Path path = new Path(arg);
log.info("Writing to file '" + path + "'");
FileSKVWriter writer = (new RFileOperations()).openWriter(arg, path.getFileSystem(conf), conf, DefaultConfiguration.getDefaultConfiguration(), opts.codec);
writer.close();
}
}