Reputation: 159
suppose i have a local folder on my computer and that contains thousands of record and i want to download all file from FTP and add on that local folder,is that possible? I've never used ftp before, so I am not sure where to start.
Upvotes: 1
Views: 668
Reputation: 4610
Based on your comments, you definitely could Execute Process Task
, there are three important fields that you need to take care of(In the Process
Page of this task)
For the first one, choose any tool that you are using to download the files from FTP. I use FileZilla
before.
For the Arguments
, you could either use direct commands or .txt
script
For the 3rd one, specify where that tool is located.
UPDATE:
If you will use FTP task
, there is one properties called OverwriteFileAtDestination
, which is default to false
, so you do not need to worry about it.
Upvotes: 1