如何从install4j中的“运行脚本”操作中调用“复制文件和目录”操作?
答案 0 :(得分:0)
像这样:
import com.install4j.runtime.beans.actions.files.CopyFileAction;
CopyFileAction action = new CopyFileAction();
action.setFiles(new File[] {new File("origin.txt")});
action.setDestinationFile(new File("target_file_or_directory"));
action.execute(context);
代码完成时可以发现其他属性。