VariableTable variables = createVariables(context);
Configuration config = configurations.newInstance();
FileSystem fs = FileSystem.get(config);
for (String path : description.getPaths()) {
String resolved = variables.parse(path, false);
Path target = fs.makeQualified(new Path(resolved));
LOG.debug("ファイルを削除しています: {}", target);
boolean succeed = fs.delete(target, true);
LOG.debug("ファイルを削除しました (succeed={}): {}", succeed, target);
}
}