3

我想编写一个调用需要完整路径的外部实用程序(实际上是 Inkscape)的 Ant 脚本。现在我有

<exec executable="${inkscape.path}">
    <arg value="--file=build_exe/splash.svg" />
    <arg value="--export-png=build_exe/splash.png" />
    <arg value="-C" />
</exec>

在 Windows 上,Inkscape 需要绝对路径。那么如何才能哄Ant为build_exe/filename我打造一条绝对路径呢?或者,是否有 Inkscape 的解决方法(可能设置工作目录)?

4

2 回答 2

5

用这个:

<property name="x" location="folder/file.txt" />

${X}值将是文件相对于该${basedir}值的绝对路径。

于 2009-05-21T20:48:18.903 回答
0

我会宣布

<property file="my_config.properties"/>

我会把这个路径写在文件 my_config.properties 中。您的用户只需要修改此配置文件。

于 2009-05-21T19:54:52.817 回答