String localPath = (String) cl.getValue(argLocalPath);
File localFile = app.getPlatformFile(localPath == null ? "." : localPath, false).getCanonicalFile();
VltContext vCtx = app.createVaultContext(localFile);
vCtx.setVerbose(cl.hasOption(OPT_VERBOSE));
vCtx.setQuiet(cl.hasOption(OPT_QUIET));
Sync sc = new Sync(cmd, addr, localFile);
sc.setForce(cl.hasOption(optForce));
vCtx.execute(sc);
}