Download files from multiple FTP folders in SSIS

2019-08-27 17:52发布

Is there a way to dlownload filed from multiple folders in FTP location using SSIS. I know to download files from a particular folder. But there are multiple folders that I want the SSIS to traverse through on FTP location

标签: ssis ftp
1条回答
唯我独甜
2楼-- · 2019-08-27 18:26

One approach would be to put each of your source folders in variables within your package. This would allow you to set up a Loop Container for each variable and pass each path in as a parameter to your ftp task. There would be some overhead because you would be building and destroying the ftp connection with each loop, but that would get you to a parameterized solution.

查看更多
登录 后发表回答