当前位置:编程学习 > C#/ASP.NET >>

一个FTP客户端的C#代码

using System;
using System.Net;
using System.IO;
using System.Text;
using System.Net.Sockets;
namespace zhangyuk.net.csdn.blog.ftpclient
{
 /// <summary>
 /// FTP Client
 /// </summary>
 public class FTPClient
 {
  #region 构造函数
  /// <summary>
  /// 缺省构造函数
  /// </summary>
  public FTPClient()
  {
     strRemoteHost  = "";
     strRemotePath  = "";
     strRemoteUser  = "";
     strRemotePass  = "";
     strRemotePort  = 21;
     bConnected     = false;
  }
  /// <summary>
  /// 构造函数
  /// </summary>
  /// <param name="remoteHost"></param>
  /// <param name="remotePath"></param>
  /// <param name="remoteUser"></param>
  /// <param name="remotePass"></param>
  /// <param name="remotePort"></param>
  public FTPClient( string remoteHost, string remotePath, string remoteUser, string remotePass, int remotePort )
  {
     strRemoteHost  = remoteHost;
     strRemotePath  = remotePath;
     strRemoteUser  = remoteUser;
     strRemotePass  = remotePass;
补充:asp.net教程,C语言 
CopyRight © 2012 站长网 编程知识问答 www.zzzyk.com All Rights Reserved
部份技术文章来自网络,