在ant中,如何将文件的文件路径转换为相对路径?这是我到目前为止仍然保留文件的完整路径的内容
<path id="build.classpath">
<fileset dir="../../lib">
<include name="*.jar"/>
</fileset>
</path>
<pathconvert property="mf.classpath" pathsep=" " refid="build.classpath">
<map from="${build.classpath}" to="lib/"/>
</pathconvert>