String jcrPath = (String) cl.getValue(argJcrPath);
String name = (String) cl.getValue(argLocalPath);
ConsoleFile wo = ctx.getFile(jcrPath, true);
if (wo instanceof VaultFsCFile) {
VaultFile file = (VaultFile) wo.unwrap();
if (name == null) {
name = file.getName();
}
File local = ctx.getVaultFsApp().getPlatformFile(name, false);
doGet(file, local, forced);