我想使用C#从FTP服务器下载许多(数千个)较小的文件。使用我当前的代码,我无法实现超过100 KB / s的速度(通常慢得多)(我在本地FileZilla FTP服务器上进行测试)。
这是我的代码:
foreach (var file in files)
{
//Client is basically a WebClient
var stream = Client.OpenRead(new Uri(_serverRootPath + file.Replace(@"\", "/")));
var filePath = _clientRootPath + file;
if (!Directory.Exists(Path.GetDirectoryName(filePath)))
Directory.CreateDirectory(Path.GetDirectoryName(filePath));
var fileStream = new FileStream(_clientRootPath + file, FileMode.Create);
const int bufferSize = 8192;
var buffer = new byte[bufferSize];
var readCount = stream.Read(new byte[bufferSize], 0, bufferSize);
while (readCount > 0)
{
await fileStream.WriteAsync(buffer, 0, readCount);
readCount = await stream.ReadAsync(buffer, 0, bufferSize);
}
stream.Close();
}
任何帮助都将不胜感激。
答案 0 :(得分:0)
您是否尝试过并行运行?如果您的连接速度是这里的瓶颈,那么它将无济于事,否则值得尝试。 查看http://msdn.microsoft.com/en-us/library/dd460720(v=vs.110).aspx以获取示例。