ant 替换任务可以只处理时间戳之后的文件吗?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
更多信息:
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 :
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