2017-01-04 3 views

ответ

6

В настоящее время существует DownloadFile() и UploadFile() методов, встроенных в последнюю версию FluentFTP.

Пример использования от 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"); 
Смежные вопросы