资源简介
非常详细的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
相关资源
- 简易unity屏幕特效代码shader+C#
- 操作系统实验之进程调度 C#编写,G
- 客显Led8Demo C# 有测试工具
- 通过修改属性表完成shp文件的修改
- C#上位机串口通信助手源代码
- ZeroMQ传输数据
- C#制作仿苹果优美界面
- C#自定义控件之-自定义MessageBox
- CSharp通讯录编程
- c# 读取txt文件中特定内容后的文字
- C#打开电脑本地文件地址
- C#实现在控件上画直线
- c#连接oracle实现用户登录以及密码的修
- C#基于TCP的Socket多线程通信包含服务端
- C# 中使用Report(rdlc)报表实现dataLi
- c#数据库课程设计-可视化界面
- C#三层架构
- .net 天气预报 C#应用程序
- C#热敏小票打印机打印位图
- 房屋出租管理系统access+c#
- 学生信息管理系统c#+sql
- c# 五子棋课程设计
- C#Socket多线程聊天室
- 通过UDP将文件从服务器发送到客户端
- 基于C#的网络抓包程序源码
- C#做的拼图小游戏源代码
- C#动态添加菜单实现权限管理
- C# IO写入,输出
- C# 二手交易系统 二手交易系统
- 从数据库读取数据到坐标轴为时间的
评论
共有 条评论