逐个加载文件夹中的所有项目

时间:2018-03-06 17:32:40

标签: eclipse eclipse-rcptt

让我说明一下情景。

- Go to a specific folder ( It has 20 projects.)
- Load all projects one by one and execute one rcptt step.

所以,我在做的是:

loop [val index0] { // i used hard code here. give better suggestion.

    //method to go to that folder

    if [$index| lt 20] {
        //execute a procedure
    }
        recur [$index| plus 1]
    }

但这没有发生。

需要专家建议相关的事情。

由于

1 个答案:

答案 0 :(得分:0)

您可以使用ECL录音机执行此操作。使用AUT记录如何手动导入目录的所有项目:

File->Import...
    Existing Projects >
        Select root directory;
        Select All,
        Finish.

从生成的ECL脚本中,您可以提取所选目录的文字,并将其转换为带有路径参数的产品。

考虑到“导入”对话框中的“全选”按钮,我认为没必要为此编写循环(或任何代码)。