1

当我尝试调用另一个 ant 构建文件并将其结果复制到目录时遇到问题:

<!-- Copying PatientStation -->

<ant dir="../SubProject" antfile="build.xml" />

<copy todir="D:/Export">
    <fileset dir="../SubProject/${fullVersionName}/jar" />
</copy>

在 ant 调用之后,我没有定位在远程目录而不是当前目录中。

BUILD FAILED
D:\myWorkspace\Build\build1.xml:64: D:\myWorkspace\SubProject\D:\Export does not exist.
4

2 回答 2

1

我面前没有 PC,所以我不能肯定地说什么会起作用,但通常在 Ant 中,如果目录不以斜杠开头,则假定它是当前的子目录${basedir}.

尝试以下方法之一:

<!-- You're in the "D" drive, so don't specify the drive letter -->
<!-- This specifies the current drive you're on -->
<copy todir="/Export"/>

或者

<!-- If that doesn't work, try this -->
<!-- Windows uses backslash as separators -->
<copy todir="D:\\Export"/>

或者

<!-- Add a slash in front of the drive letter -->
<copy todir="/D:/Export"/>

其中之一将起作用。

于 2012-12-21T16:27:27.093 回答
0

您可以通过在变量中设置目标文件夹位置来做到这一点。

试试这个:

    <property name="tgtpath" location="D:/Export" />
    <copy todir="${tgtpath}">
        <fileset dir="../SubProject/${fullVersionName}/jar" />
    </copy>
于 2016-07-09T09:24:45.950 回答