我有这样的情况
while ( until toUpload list empty)
{
create ftp folder (list.item);
if (upload using ftp (list.item.fileName))
{
update Uploaded list that successfully updated;
}
}
update database using Uploaded list;
在这里,我使用同步方法在此循环中上传文件。我有一个要求优化此上传。我找到了这篇文章How to improve the Performance of FtpWebRequest?,并遵循了他们提供的说明。因此我达到了2000秒到1000秒的时间。然后,如msdn中的示例所示,我进入使用异步上传。 http://msdn.microsoft.com/en-us/library/system.net.ftpwebrequest(v=vs.90).aspx。我改变了方法
if (upload using ftp (list.item.fileName))
至
if (aync upload using ftp (list.item.fileName))
但是事情变得更糟了。时间变成1000s至4000s。
我必须将许多文件上传到ftp服务器。因此,最好的方法应该是(猜测)异步。有人帮助我如何以正确的方式执行此操作。我找不到正确使用上述msdn示例代码的方法。
我的代码-同步(删除了异常处理以节省空间):
public bool UploadFtpFile(string folderName, string fileName)
{
try
{
string absoluteFileName = Path.GetFileName(fileName);
var request = WebRequest.Create(new Uri(
String.Format(@"ftp://{0}/{1}/{2}",
this.FtpServer, folderName, absoluteFileName))) as FtpWebRequest;
request.Method = WebRequestMethods.Ftp.UploadFile;
request.UseBinary = true;
request.UsePassive = true;
request.KeepAlive = true;
request.Credentials = this.GetCredentials();
request.ConnectionGroupName = this.ConnectionGroupName;
request.ServicePoint.ConnectionLimit = 8;
using (FileStream fs = File.OpenRead(fileName))
{
byte[] buffer = new byte[fs.Length];
fs.Read(buffer, 0, buffer.Length);
fs.Close();
using(var requestStream = request.GetRequestStream())
{
requestStream.Write(buffer, 0, buffer.Length);
}
}
using (var response = (FtpWebResponse)request.GetResponse())
{
return true;
}
}
catch // real code catches correct exceptions
{
return false;
}
}
异步方法
public bool UploadFtpFile(string folderName, string fileName)
{
try
{
//this methods is exact method provide in msdn example mail method
AsyncUploadFtp(String.Format(@"ftp://{0}/{1}/{2}",
this.FtpServer, folderName, Path.GetFileName(fileName)), fileName);
return true;
}
catch // real code catches correct exceptions
{
return false;
}
}
最佳答案
您是否尝试过在foreach
循环中使用它?
Task.Factory.StartNew(() => UploadFtpFile(folderName, filename));
关于c# - 使用ftp C#异步高效地上传多个文件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14868802/