2017-01-04 14 views

답변

6

FluentFTP의 최신 버전에는 DownloadFile()UploadFile() 개의 메소드가 내장되어 있습니다. https://github.com/robinrodricks/FluentFTP#example-usage에서

사용 예제 :

// connect to the FTP server 
FtpClient client = new FtpClient(); 
client.Host = "123.123.123.123"; 
client.Credentials = new NetworkCredential("david", "pass123"); 
client.Connect(); 

// upload a file 
client.UploadFile(@"C:\MyVideo.mp4", "/htdocs/big.txt"); 

// rename the uploaded file 
client.Rename("/htdocs/big.txt", "/htdocs/big2.txt"); 

// download the file again 
client.DownloadFile(@"C:\MyVideo_2.mp4", "/htdocs/big2.txt");