如何下载以" xyz"开头的文件名从服务器Spring集成ftp?

时间:2016-11-15 06:46:16

标签: ftp spring-integration

FTP入站XML配置:

<int-ftp:inbound-channel-adapter id="ftpInbound"
            channel="ftpChannel"
            session-factory="ftpClientFactory"
            filename-pattern="*.*"
            auto-create-local-directory="true"
            delete-remote-files="false"
            remote-directory="/server/"
            local-directory="${localDir}"
            preserve-timestamp="false">

如何下​​载以&#34; xyz&#34;开头的文件名从服务器?

1 个答案:

答案 0 :(得分:0)

您只需将模式设置为匹配:filename-pattern="xyz*";现有模式匹配名称中某处.的所有文件。