ant 替换任务可以只处理时间戳之后的文件吗?

发布于 2024-12-08 14:52:20 字数 112 浏览 0 评论 0原文

ant 替换任务不像复制任务具有覆盖属性,复制任务可以复制修改时间更改的文件。

如何使替换任务只处理复制任务中更改的文件? 或者在某处保存时间戳,让替换任务只处理修改时间在时间​​戳之后的文件。

The ant replace task is not like copy task which have a overwrite property, copy task can copy files that modifytime is changed.

How can I make replace task just deal with files be changed in copy task?
or save a timestamp somewhere, let replace task just deal with files which modifytime is after the timestamp.

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

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

发布评论

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

评论(1

明媚如初 2024-12-15 14:52:20

试试这个:

<replace dir="${dir}" value="that" token="this">
   <include name="**/*.txt"/>
   <date datetime="${timestamp}" when="before"/>
</replace>

更多信息:

http://ant.apache.org/manual/Types/fileset .html
http://ant.apache.org/manual/Types/selectors.html#dateselect
http://ant.apache.org/manual/Tasks/replace.html

Try this :

<replace dir="${dir}" value="that" token="this">
   <include name="**/*.txt"/>
   <date datetime="${timestamp}" when="before"/>
</replace>

More infos :

http://ant.apache.org/manual/Types/fileset.html
http://ant.apache.org/manual/Types/selectors.html#dateselect
http://ant.apache.org/manual/Tasks/replace.html

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