Date: Tue, 29 Oct 2002 15:01:32 -0800
Reply-To: Chuck Enright <cfedata@HOTMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Chuck Enright <cfedata@HOTMAIL.COM>
Organization: http://groups.google.com/
Subject: Use Sas to ftp get
Content-Type: text/plain; charset=ISO-8859-1
I've been downloading files from a ftp server using the dos command
line, and would like to begin using Sas to get the files for me.
How would I execute this example in Sas?
ftp
open hostname
userid
password
binary
cd tmpFTPfiles
get hostfile.zip d:/temp/localfile.zip
bye
exit
|