使用 Apache Ant 删除目录中的所有文件(不包含子目录)

发布于 2024-09-27 17:21:31 字数 264 浏览 4 评论 0原文

我需要一个 Apache Ant 目标来删除目录中的所有文件,但不触及子目录。

在我当前的方法中,我必须明确命名我想要跳过的子目录(atm 只是“src/”)。

<delete>
   <fileset dir="${dist.dir}" excludes="src/" />
</delete>

但我不喜欢它。这样,每次子目录结构发生变化时,我都必须修改目标。

有什么想法吗?

I need an Apache Ant target that deletes all files in a directory but does not touch subdirectories.

In my current approach I have to explicitly name the subdirectories I want to skip (atm just "src/").

<delete>
   <fileset dir="${dist.dir}" excludes="src/" />
</delete>

But I don't like it. That way I would have to modify the target everytime something changes in the subdirectory structure.

Any ideas?

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

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

发布评论

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

评论(1

吃兔兔 2024-10-04 17:21:31

这应该有效:

<delete>
   <fileset dir="${dist.dir}">
      <include name="*"/>
   </fileset>
</delete>

* 通配符应该只删除顶层的文件,而不是目录或子目录。如果您希望它是递归的,则需要使用 **/* 代替。

This should work:

<delete>
   <fileset dir="${dist.dir}">
      <include name="*"/>
   </fileset>
</delete>

The * wildcard should only delete the files at the top level, not directories or subdirectories. If you wanted it to be recursive, you'd need to use **/* instead.

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