asp.net (网页中操作FTP)

C#2.0中增加了对FTP操作的支持。
在网上搜到了 www.knowsky.com/343881.html,这篇文章对于ftp操作做了简单的介绍。

我根据这个介绍,将其转化到网页中来,从而完成我们现在项目的需求。

在这个项目中,我使用了三种方法:List ,upload还是download。

后台代码:
using  System;
using  System.Data;
using  System.Configuration;
using  System.Web;
using  System.Web.Security;
using  System.Web.UI;
using  System.Web.UI.WebControls;
using  System.Web.UI.WebControls.WebParts;
using  System.Web.UI.HtmlControls;
using  System.IO;
using  System.Net;
using  System.Text;

public  partial  class  _Default : System.Web.UI.Page 
{
    
string ftpServerIP = "59.125.163.103";
    
string ftpUserID = "vtek";
    
string ftpPassword = "vtek_admin";
    
protected void Page_Load(object sender, EventArgs e)
    
{

    }


    
private void Upload(string filename)
    
{
        FileInfo fileInf 
= new FileInfo(filename);
        
string uri = "ftp://" + ftpServerIP + "/" + fileInf.Name;
        FtpWebRequest reqFTP;

        
// 根据uri创建FtpWebRequest对象 
        reqFTP = (FtpWebRequest)FtpWebRequest.Create(new Uri("ftp://" + ftpServerIP + "/" + fileInf.Name));

        
// ftp用户名和密码
        reqFTP.Credentials = new NetworkCredential(ftpUserID, ftpPassword);

        
// 默认为true,连接不会被关闭
        
// 在一个命令之后被执行
        reqFTP.KeepAlive = false;

        
// 指定执行什么命令
        reqFTP.Method = WebRequestMethods.Ftp.UploadFile;

        
// 指定数据传输类型
        reqFTP.UseBinary = true;

        
// 上传文件时通知服务器文件的大小
        reqFTP.ContentLength = fileInf.Length;

        
// 缓冲大小设置为2kb
        int buffLength = 2048;

        
byte[] buff = new byte[buffLength];
        
int contentLen;

        
// 打开一个文件流 (System.IO.FileStream) 去读上传的文件
        FileStream fs = fileInf.OpenRead();
        
try
        
{
            
// 把上传的文件写入流
            Stream strm = reqFTP.GetRequestStream();

            
// 每次读文件流的2kb
            contentLen = fs.Read(buff, 0, buffLength);

            
// 流内容没有结束
            while (contentLen != 0)
            
{
                
// 把内容从file stream 写入 upload stream
                strm.Write(buff, 0, contentLen);

                contentLen 
= fs.Read(buff, 0, buffLength);
            }


            
// 关闭两个流
            strm.Close();
            fs.Close();
        }

        
catch (Exception ex)
        
{
            
//MessageBox.Show(ex.Message, "Upload Error");
            Response.Write(ex.Message);
        }

    }

    
private void Download(string filePath, string fileName)
    
{

        FtpWebRequest reqFTP;

        
try
        
{

            
//filePath = <<The full path where the file is to be created. the>>, 

            
//fileName = <<Name of the file to be createdNeed not name on FTP server. name name()>>

            FileStream outputStream 
= new FileStream(filePath + "\\" + fileName, FileMode.Create);

            reqFTP 
= (FtpWebRequest)FtpWebRequest.Create(new Uri("ftp://" + ftpServerIP + "/" + fileName));

            reqFTP.Method 
= WebRequestMethods.Ftp.DownloadFile;

            reqFTP.UseBinary 
= true;

            reqFTP.Credentials 
= new NetworkCredential(ftpUserID, ftpPassword);

            FtpWebResponse response 
= (FtpWebResponse)reqFTP.GetResponse();

            Stream ftpStream 
= response.GetResponseStream();

            
long cl = response.ContentLength;

            
int bufferSize = 2048;

            
int readCount;

            
byte[] buffer = new byte[bufferSize];


            readCount 
= ftpStream.Read(buffer, 0, bufferSize);

            
while (readCount > 0)
            
{

                outputStream.Write(buffer, 
0, readCount);

                readCount 
= ftpStream.Read(buffer, 0, bufferSize);

            }



            ftpStream.Close();

            outputStream.Close();

            response.Close();

        }


        
catch (Exception ex)
        
{

           Response.Write(ex.Message);

        }





    }



    
public string[] GetFileList()
    
{
        
string[] downloadFiles = new string[100];
        StringBuilder result 
= new StringBuilder();
        FtpWebRequest reqFTP;
        
try
        
{
            reqFTP 
= (FtpWebRequest)FtpWebRequest.Create(new Uri("ftp://" + ftpServerIP + "/"));
            reqFTP.UseBinary 
= true;
            reqFTP.Credentials 
= new NetworkCredential(ftpUserID, ftpPassword);
            reqFTP.Method 
= WebRequestMethods.Ftp.ListDirectory;
            WebResponse response 
= reqFTP.GetResponse();
            StreamReader reader 
= new StreamReader(response.GetResponseStream());
            
string line = reader.ReadLine();
            
while (line != null)
            
{
                result.Append(line);
                result.Append(
"\n");
                line 
= reader.ReadLine();
            }

            
// to remove the trailing '\n'        
            result.Remove(result.ToString().LastIndexOf('\n'), 1);
            reader.Close();
            response.Close();
            
return result.ToString().Split('\n');
        }

        
catch (Exception ex)
        
{
            Response.Write(ex.Message);
            downloadFiles 
= null;
            
return downloadFiles;
        }

    }





    
protected void Button1_Click(object sender, EventArgs e)
    
{
        
//string[] result=this.GetFileList();

        
//if (result.Length > 0)
        
//    foreach (string s in result)
        
//    {
        
//        Response.Write(s + "<br/>");
        
//    }

        
//this.Download("d:\\", "sp.sql");
       this.Upload("d:\\shipfa");
    }

}



前台代码:
<% @ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default"  %>

<! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" >

< html  xmlns ="http://www.w3.org/1999/xhtml"   >
< head  runat ="server" >
    
< title > 无标题页 </ title >
</ head >
< body >
    
< form  id ="form1"  runat ="server" >
    
< div >
        
< asp:Button  ID ="Button1"  runat ="server"  Text ="List"  OnClick ="Button1_Click"   />
    
</ div >
    
</ form >
</ body >
</ html >

源码下载:
/Files/xxpyeippx/WebSite2.rar

转载于:https://www.cnblogs.com/xxpyeippx/archive/2007/09/17/895940.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
ASP.NET FTP系统源代码是一种用于在ASP.NET平台上实现FTP功能的源代码。FTP(文件传输协议)是一种用于在计算机之间传输文件的标准协议。 ASP.NET是一种用于构建Web应用程序的微软技术,它使用具有服务器端脚本语言的服务器技术来生成动态网页ASP.NET FTP系统源代码通常包含以下功能: 1. 用户认证:允许用户通过用户名和密码进行身份验证,以便访问FTP服务器。 2. 目录浏览:显示FTP服务器上的文件和文件夹列表,以便用户可以浏览和查询。 3. 文件上传:允许用户将文件从本地计算机上传到FTP服务器上的指定位置。 4. 文件下载:允许用户从FTP服务器上下载文件到本地计算机上的指定位置。 5. 文件删除:允许用户删除FTP服务器上的文件。 6. 文件重命名:允许用户更改FTP服务器上文件的名称。 7. 目录创建和删除:允许用户在FTP服务器上创建和删除目录。 8. 权限控制:允许管理员对用户进行权限管理,例如授权用户只能上传文件而不能删除或下载文件。 9. 日志记录:记录所有FTP操作和事件,以便跟踪和故障排除。 ASP.NET FTP系统源代码可以使用C#或VB.NET等编程语言编写,并使用FTP客户端库,如System.Net.FtpClient命名空间提供的类来实现FTP功能。 开发人员可以根据自己的需求对ASP.NET FTP系统源代码进行定制和扩展,以满足特定的业务需求。他们可以添加额外的功能,如文件搜索、文件夹权限管理等。 总之,ASP.NET FTP系统源代码是实现FTP功能的一种解决方案,可用于构建功能完善的FTP服务器和客户端应用程序。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值