我需要知道一种连接到 FTP 站点的方法,但我找不到使用 C# 执行程序的示例。我需要编写可以连接的代码,并在不使用第三方组件的情况下从 FTP 服务器下载文件。
我怎样才能做到这一点 ?帮助。
我需要知道一种连接到 FTP 站点的方法,但我找不到使用 C# 执行程序的示例。我需要编写可以连接的代码,并在不使用第三方组件的情况下从 FTP 服务器下载文件。
我怎样才能做到这一点 ?帮助。
.Net 4 中有 FtpWebRequest 类
http://msdn.microsoft.com/en-us/library/system.net.ftpwebrequest.aspx
文末有例子。下面是一个取自 msdn 的示例:
public static bool DisplayFileFromServer(Uri serverUri)
{
// The serverUri parameter should start with the ftp:// scheme.
if (serverUri.Scheme != Uri.UriSchemeFtp)
{
return false;
}
// Get the object used to communicate with the server.
WebClient request = new WebClient();
// This example assumes the FTP site uses anonymous logon.
request.Credentials = new NetworkCredential ("anonymous","janeDoe@contoso.com");
try
{
byte [] newFileData = request.DownloadData (serverUri.ToString());
string fileString = System.Text.Encoding.UTF8.GetString(newFileData);
Console.WriteLine(fileString);
}
catch (WebException e)
{
Console.WriteLine(e.ToString());
}
return true;
}
这不是一个具体的问题。
您需要在 .NET 框架中使用套接字类: MSDN - System.Net.Sockets
我之前使用的一个很好的例子是: www.dreamincode.net - 创建一个 ftp 类库