简单的ftp下载器/ http代理

时间:2012-04-18 22:17:36

标签: c# asp.net .net

对于我正在处理的项目,我需要提供对我只有ftp访问权限的文件的http访问权限。这用作需要下载文件但仅支持http的外部服务。我尝试了下面的代码:但是CPU /内存的使用是通过屋顶而且它会慢慢消失。有什么建议吗?

using System;
using System.Web;
using System.Net;
using System.IO;

public class ftpproxy : IHttpHandler
{
    // ftpproxy.ashx?src=ftp://username:password@server.com/staticfiles/foo.f4v
    public void ProcessRequest (HttpContext context) {
        WebClient wc = new WebClient();
        string src = context.Request.QueryString["src"];
        using (Stream instr = wc.OpenRead(src))
        {
            instr.CopyTo(context.Response.OutputStream);
        }
    }

    public bool IsReusable {
        get {
            return false;
        }
    }

}

谢谢!

哦,这些是大文件(数百个megs到几场演出)

1 个答案:

答案 0 :(得分:0)

您可以使用来自Response的WebClient端WriteFile中的DownloadFile方法。

string src = context.Request.QueryString["src"];
var file = "X:\TEMP\TempFile...";
WebClient client = new WebClient();
client.DownloadFile(src, file);

Context.Response.WriteFile(file);

//Write code to clean File;