mzb1113 发表于 2013-3-7 10:09 
求高手解答,我在sas【帮助】中看了半天教程,还是没能解决我的问题,附链接http://support.sas.com/documen ...
Example 2: Reading a File from a Remote Host
This example reads a file called sales in the directory /u/kudzu/mydata from the remote UNIX host hp720:
filename myfile ftp 'sales' cd='/u/kudzu/mydata'
user='guest' host='hp720.hp.sas.com'
recfm=v prompt;
data mydata / view=mydata; /* Create a view */
infile myfile;
input x $10. y 4.;
run;
proc print data=mydata; /* Print the data */
run;
但不知道怎么修改,请大家帮忙,谢谢