2017-01-04 809 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"); 
関連する問題