• 大小: 1.22KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-02-23
  • 语言: C#
  • 标签: 下载  文件  C#  

资源简介

c#实现 ftp ;http;共享方式下载文件.cs

资源截图

代码片段和文件信息


//从ftp服务器上下载文件的功能  
        public void Download(string ftpServerIP string ftpUserID string ftpPassword string fileName string Destination)  
        {  
            FtpWebRequest reqFTP;  
            try  
            {  
                FileStream outputStream = new FileStream(Destination + “\\“ + fileName FileMode.Create);  
                // 根据uri创建FtpWebRequest对象   
                reqFTP = (FtpWebRequest)FtpWebRequest.Create(new Uri(“ftp://“ + ftpServerIP + “/“ + fileName));  
                // 指定执行什么命令  
                reqFTP.Method = WebRequestMethods.Ftp.DownloadFile;  
                // 默认为true,连接不会被关闭  
                reqFTP.UseBinary = true;  
                // ftp用户名和密码  
                reqFTP.Credentials = new NetworkCredential(ftpUserID ftpPassword);  
                FtpWebResponse ftpresponse = (FtpWebResponse)reqFTP.GetResponse();  
                Stream ftpStream = ftpresponse.GetResponseStream();  
                long cl = ftprespo

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       4941  2020-03-06 14:29  c#实现 ftp ;http;共享方式下载文件.cs

----------- ---------  ---------- -----  ----

                 4941                    1


评论

共有 条评论