Camel File2 过滤目录

发布于 2024-12-05 06:17:19 字数 625 浏览 1 评论 0 原文

使用 Camel File2,您可以设置文件名过滤器,例如: from("file://myfiles/dir1/dir11/?recursive=true& include=*.xml")

http: //camel.apache.org/file2 如果使用诸如包含或排除之类的选项,则仅文件(而不是目录)与有效文件名匹配。

我还想过滤文件名,例如: from("file://myfiles/dir1//.xml?recursive=true)

这可能吗?

我看到有一个 AntPathMatcher 类允许这种类型的过滤器: http://fusesource.com/docs/router/2.6/apidoc/org/apache/camel/core/xml/scan/AntPathMatcher.html 但我不知道如何使用它(不使用 Ant)?

With Camel File2 you can set a filter over filenames, for instance:
from("file://myfiles/dir1/dir11/?recursive=true& include=*.xml")

http://camel.apache.org/file2
Only files (not directories) are matched for valid filename, if options such as: include or exclude are used.

I'd like to filter also over filenames, something like:
from("file://myfiles/dir1//.xml?recursive=true)

is this possible?

I see that there is an AntPathMatcher class that allows this type of filter: http://fusesource.com/docs/router/2.6/apidoc/org/apache/camel/core/xml/scan/AntPathMatcher.html
but I don't see how to use it (without using Ant)?

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

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

发布评论

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

评论(1

迷离° 2024-12-12 06:17:19

Ant 路径匹配器只是一个使用类似 Ant 路径样式的匹配器。它在运行时不需要 Ant。

请参阅本页上的示例和文档:http://camel.apache.org/file2
在标题为 - 使用 ANT 路径匹配器进行过滤的部分

The Ant path matcher is just a matcher using Ant like path styles. It does not require Ant at runtime.

See examples and documentation on this page: http://camel.apache.org/file2
at the section titled - Filtering using ANT path matcher

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