是否可以使用FtpWebRequest执行“活动”模式FTP?

时间:2011-03-22 15:59:59

标签: c# ftp ftpwebrequest

由于一些防火墙问题,我们需要使用“活动”模式进行FTP(即不是通过发起PASV命令)。

目前,我们正在使用以下代码:

// Get the object used to communicate with the server.
FtpWebRequest request = (FtpWebRequest)WebRequest.Create("ftp://www.contoso.com/test.htm");
request.Method = WebRequestMethods.Ftp.UploadFile;

// This example assumes the FTP site uses anonymous logon.
request.Credentials = new NetworkCredential ("anonymous","janeDoe@contoso.com");

// Copy the contents of the file to the request stream.
StreamReader sourceStream = new StreamReader("testfile.txt");
byte [] fileContents = Encoding.UTF8.GetBytes(sourceStream.ReadToEnd());
sourceStream.Close();
request.ContentLength = fileContents.Length;

Stream requestStream = request.GetRequestStream();
requestStream.Write(fileContents, 0, fileContents.Length);
requestStream.Close();

FtpWebResponse response = (FtpWebResponse)request.GetResponse();
response.Close();

但这似乎默认使用被动模式;我们可以影响它以强制它使用活动模式上传(与命令行ftp客户端的方式相同)吗?

1 个答案:

答案 0 :(得分:24)

是,将UsePassive属性设置为false。

request.UsePassive = false;