List<File> localFiles = app.getPlatformFiles(localPaths, false);
File localDir = app.getPlatformFile("", true);
VltContext vCtx = app.createVaultContext(localDir);
vCtx.setVerbose(cl.hasOption(OPT_VERBOSE));
vCtx.setQuiet(cl.hasOption(OPT_QUIET));
Delete d = new Delete(localDir, localFiles, false, cl.hasOption(optForce));
vCtx.execute(d);
}