Camel File2 过滤目录
使用 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)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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