Ant 目标删除旧的构建目录
我将我的构建发布到以下目录:
/some/dir/build-1/
/some/dir/build-2/
/some/dir/build-3/
...
/some/dir/build-n/
我需要 ant 任务来删除除最后三个(n、n-1 和 n-3)之外的所有先前构建目录。
我想我应该使用
任务,但是如何配置属性?
I have my builds published to the directories like:
/some/dir/build-1/
/some/dir/build-2/
/some/dir/build-3/
...
/some/dir/build-n/
I need ant task to delete all the previous build directories except the last three (n, n-1 and n-3).
I suppose I shuould use <delete>
task, but how to configure the attributes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
充分利用资源。当空目录和非空目录混合在一起时,我相信您必须混合使用文件集和目录集才能使其与选择器一起使用,因为与选择器和文件集结合使用的删除不适用于空目录。而如果您只有非空目录,您只能使用文件集部分 - 这是使用某种排序+日期选择器的片段,删除最新的 3 个目录 =
请参阅 Ant 手册/资源 了解更多详细信息..
Make use of resources. When empty and non empty directories are mixed up, i believe you have to use a mix of fileset and dirset to make it work with selectors, because delete in combination with selectors and fileset won't work for empty directories.Whereas if you have only nonempty directories you may use the fileset part only - here's a snippet using some sort + date selector, deleting the latest 3 directories =
see Ant Manual/Resources for further details..