admin管理员组文章数量:1344975
Below code is only copying the files from the (windows shared drive)remote directory but all the sub directories of remote directory are skipped. I don't understand why the sub directories are skipped.
@Bean
public IntegrationFlow smbInboundFlow() {
RecursiveDirectoryScanner scanner = new RecursiveDirectoryScanner();
ChainFileListFilter filter = new ChainFileListFilter<>(
Arrays.asList( new SmbRegexPatternFileListFilter("(.*/)*.*")));
scanner.setFilter(filter);
scanner.setMaxDepth(5);
return IntegrationFlow
.from(Smb.inboundAdapter(smbSessionFactory())
.preserveTimestamp(true)
.remoteDirectory("./")
.scanner(scanner)
.localDirectory(new File("./tmp/copyfolder")),
e -> e.id("smbInboundAdapter")
.autoStartup(true)
.poller(Pollers.fixedDelay(400)))
.handle(m -> {
System.out.println(m.getPayload());})
.get();
}
Remote Dir(Windows shared drive):
.
├── file1.txt
├── file2.txt
├── file3.txt
└── subdir
├── file4.txt
├── file5.txt
└── file6.txt
My local dir content(/tmp/copyfolder):
.
├── file1.txt
├── file2.txt
├── file3.txt
本文标签: Spring integration smbwindows shared drivenot scanning sub directoriesStack Overflow
版权声明:本文标题:Spring integration smb - windows shared drive - not scanning sub directories - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743763121a2534747.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论