在 Ant 脚本中展开相对路径,适用于 Inkscape

发布于 2024-07-20 05:35:33 字数 571 浏览 10 评论 0原文

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

<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 是否有解决方法(也许设置工作目录)?

I'd like to write an Ant script that calls an external utility (Inkscape, in fact) that needs a full path. Right now I have

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

On Windows, Inkscape requires absolute paths. So how can I coax Ant to make build_exe/filename into an absolute path for me? Or, alternately, is there a workaround for Inkscape (maybe setting the working directory)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

巷雨优美回忆 2024-07-27 05:35:33

使用此:

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

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

use this:

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

the ${X} value will be the absolute path of the file relative to the ${basedir} value.

扛刀软妹 2024-07-27 05:35:33

我会声明

<property file="my_config.properties"/>

并在文件 my_config.properties 中写入此路径。 您的用户只需修改此配置文件即可。

I would declare

<property file="my_config.properties"/>

and I would write this path in the file my_config.properties. Your users will just have to modify this config file.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文