The FTP task supports FTP gets (download) but not FTP puts
(upload). You can use the command line ftp. You can execute
this with Execute Process task. It's sometimes easier to use
an FTP script file for the ftp commands and execute ftp
using this script file. To use a file, the command is:
ftp -sC:\PathToYour\FTPFile
In the file, you would just enter your commands...a basic
template being something like the following:
open <ftp site>
<login>
<password>
put <path to file you want to send>
bye
-Sue
On 6 Sep 2004 09:36:18 -0700, dtsguy1 (AT) rediffmail (DOT) com
(Karthik R) wrote:
Quote:
Hi
Is there any way of downloading/uploading files from secure ftp site
using DTS FTP task? If not Can i use windows command line FTP as part
of DTS execute process to do the same? Is there any alternative?
Thanks! |