• 大小: 32KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-05-09
  • 语言: C#
  • 标签: C#  FTP  客户端  

资源简介

非常详细的C# FTP客户端实例,内含用户自定义的FTP控件,可嵌入到自己的程序中使用

资源截图

代码片段和文件信息

//////////////////////////////////////////////////////////////////////////////
// This source code and all associated files and resources are copyrighted by
// the author(s). This source code and all associated files and resources may
// be used as long as they are used according to the terms and conditions set
// forth in The Code Project Open License (CPOL) which may be viewed at
// http://www.blackbeltcoder.com/Legal/Licenses/CPOL.
//
// Copyright (c) 2011 Jonathan Wood
//

using System;
using System.Windows.Forms;

namespace TestFtpClient
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void Form1_Load(object sender EventArgs e)
{
FtpCredentials frm = new FtpCredentials();
frm.ShowDialog();
ftpClientCtl1.Host = Properties.Settings.Default.Host;
ftpClientCtl1.Username = Properties.Settings.Default.Username;
ftpClientCtl1.Password = Properties.Settings.Default.Password;
ftpClientCtl1.Populate();
}
}
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         776  2011-03-09 11:10  Resources\delete.bmp
     文件         822  2011-03-09 18:19  Resources\Document.bmp
     文件         824  2011-03-09 11:10  Resources\DownloadDocument.bmp
     文件         822  2011-03-09 18:16  Resources\Folder.bmp
     文件         824  2011-03-09 10:54  Resources\GoToParentFolder.bmp
     文件         824  2011-03-09 11:10  Resources\NewFolder.bmp
     文件         824  2011-03-09 10:55  Resources\Refresh.bmp
     文件         822  2011-03-09 11:10  Resources\UploadDocument.bmp
     文件        1031  2011-03-09 12:43  app.config
     文件        1031  2011-03-09 20:28  Form1.cs
     文件        2014  2011-03-09 20:28  Form1.Designer.cs
     文件        5814  2011-03-09 20:28  Form1.resx
     文件       15631  2011-03-09 20:28  FtpClient.cs
     文件       14630  2011-03-09 20:28  FtpClientCtl.cs
     文件       16837  2011-03-09 19:39  FtpClientCtl.designer.cs
     文件        9284  2011-03-09 19:39  FtpClientCtl.resx
     文件         989  2011-03-09 12:56  FtpCredentials.cs
     文件        5015  2011-03-09 12:43  FtpCredentials.Designer.cs
     文件        5814  2011-03-09 12:43  FtpCredentials.resx
     文件         427  2011-03-08 09:49  Program.cs
     文件         491  2011-01-12 12:20  ReadMe.txt
     文件        6665  2011-03-09 20:26  TestFtpClient.csproj
     文件        1462  2011-03-08 09:49  Properties\AssemblyInfo.cs
     文件        4420  2011-03-09 20:25  Properties\Resources.Designer.cs
     文件        7473  2011-03-09 11:10  Properties\Resources.resx
     文件        2373  2011-03-09 20:26  Properties\Settings.Designer.cs
     文件         644  2011-03-09 12:43  Properties\Settings.settings

评论

共有 条评论