FathFTP.NET是面向Windows開發者的一個FTP客戶端.NET組件。它使您的應用程序可以通過互聯網訪問FTP服務器,下載和上傳文件,甚至可以斷點續傳。
The FathFTP.NET is a FTP-client .NET component for Windows developers. It provides your applications with the capability to access FTP servers on the Internet, download and upload files or even continue broken transfers.
它是一個完全的C# .NET的控件,您可以在WinForms 或 WebForms下使用。
下載試用版,通過含有源代碼FTP客戶端 C#和ASP.NET示例程序了解其功能。
C# 例子:
'Download file
fftp.Connect(server,21,username,password);
fftp.Get("file.ext","c:\folder\file.ext",0)
fftp.Disconnect();
It is a fully C# .NET component you can use in any WinForms and/or WebForms application.
Download the trial version and explore fully functional FTP client C# and ASP.NET samples with source code.
C# example:
'Download file
fftp.Connect(server,21,username,password);
fftp.Get("file.ext","c:\folder\file.ext",0)
fftp.Disconnect();