2017-01-04 4 views

Antwort

6

Es sind jetzt DownloadFile() und UploadFile() Methoden in der neuesten Version von FluentFTP integriert.

Beispiel für die Verwendung von 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");