0

让我给出这个场景的想法。

- 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]
    }

但这并没有发生。

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

谢谢

4

1 回答 1

0

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

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

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

鉴于导入对话框的全选按钮,我认为没有必要为此编写循环(或任何代码)。

于 2018-03-07T09:42:26.893 回答