资源简介
这是一个课程设计的题目,基于tcp协议的文件传输。对取文件,看目录操作等都可以。

代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Net;
using System.Net.Sockets;
using System.Threading;
using System.IO;
namespace FTPclient
{
public partial class Form1 : Form
{
TcpClient client;
NetworkStream netStream;
StreamReader sr;
StreamWriter sw;
//private FileStream filestream = null;
public Form1()
{
//Form.CheckForIllegalCrossThreadCalls = false;
InitializeComponent();
this.btn_UpDir.Enabled = false;
}
private void btn_Connect_Click(object sender EventArgs e)
{
try
{
IPAddress ip = IPAddress.Parse(tb_ip.Text);
//int port=int.Parse(tb_port.Text);
//IPEndPoint ipend = new IPEndPoint(ip port);
client = new TcpClient(tb_ip.Text 21);
//client.Connect(ip port);
}
catch
{
MessageBox.Show(“与服务器连接失败!“);
return;
}
netStream = client.GetStream();
sr = new StreamReader(netStream System.Text.Encoding.Unicode);
string str = sr.ReadLine();
this.listBoxInfo.Items.Add(“收到: “ + str);
sw = new StreamWriter(netStream System.Text.Encoding.Unicode);
//获取FTP根目录下的子目录和文件列表
GetDirAndFiles(@“server:\“);
}
private void btn_close_Click(object sender EventArgs e)
{
sw.WriteLine(“QUIT“);
sw.Flush();
this.listBoxInfo.Items.Add(“发送:QUIT“);
client.Close();
}
private void btn_UpDir_Click(object sender EventArgs e)
{
string path = this.groupBox1.Text;
//找到最后一个\截去
path = path.Substring(0path.LastIndexOf(“\\“));
//再从右到左找到一个\
int num = path.LastIndexOf(“\\“);
//截去\后面的子串
path = path.Substring(0 num + 1);
GetDirAndFiles(path);
}
private void btn_download_Click(object sender EventArgs e)
{
SaveFileDialog myfile = new SaveFileDialog();
if (myfile.ShowDialog() ==DialogResult.OK)
{
foreach (Control control in this.Controls)
{
control.Update();
}
string path = this.listBoxFile.SelectedItem.ToString();
sw.WriteLine(“RETR “ + path);
sw.Flush();
this.listBoxInfo.Items.Add(“发送:RETR “ + path);
this.listBoxInfo.SelectedIndex = this.listBoxInfo.Items.Count - 1;
string str = sr.ReadLine();
this.listBoxInfo.Items.Add(“收到:“ + str);
thi
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 5612 2008-12-13 16:15 FTPclient\FTPclient\Properties\Resources.resx
文件 249 2008-12-13 16:15 FTPclient\FTPclient\Properties\Settings.settings
文件 1166 2008-12-13 16:15 FTPclient\FTPclient\Properties\AssemblyInfo.cs
文件 2872 2008-12-13 16:15 FTPclient\FTPclient\Properties\Resources.Designer.cs
文件 1092 2008-12-13 16:15 FTPclient\FTPclient\Properties\Settings.Designer.cs
文件 10760 2009-01-03 13:55 FTPclient\FTPclient\Form1.Designer.cs
文件 9535 2009-01-03 23:59 FTPclient\FTPclient\Form1.cs
文件 3510 2008-12-21 23:33 FTPclient\FTPclient\FTPclient.csproj
文件 5632 2005-11-11 22:25 FTPclient\FTPclient\bin\Debug\FTPclient.vshost.exe
文件 40960 2009-01-03 23:59 FTPclient\FTPclient\bin\Debug\FTPclient.exe
文件 28160 2009-01-03 23:59 FTPclient\FTPclient\bin\Debug\FTPclient.pdb
文件 536576 2007-08-06 22:46 FTPclient\FTPclient\bin\Debug\IrisSkin2.dll
文件 16680 2009-01-03 14:18 FTPclient\FTPclient\obj\Debug\FTPclient.Form1.resources
文件 180 2008-12-13 17:20 FTPclient\FTPclient\obj\Debug\FTPclient.Properties.Resources.resources
文件 40960 2009-01-03 23:59 FTPclient\FTPclient\obj\Debug\FTPclient.exe
文件 5678 2008-12-21 23:33 FTPclient\FTPclient\obj\Debug\ResolveAssemblyReference.cache
文件 28160 2009-01-03 23:59 FTPclient\FTPclient\obj\Debug\FTPclient.pdb
文件 842 2009-01-03 14:18 FTPclient\FTPclient\obj\Debug\FTPclient.csproj.GenerateResource.Cache
文件 307 2009-01-04 11:25 FTPclient\FTPclient\obj\FTPclient.csproj.FileList.txt
文件 31131 2009-01-03 13:55 FTPclient\FTPclient\Form1.resx
文件 468 2008-12-13 16:15 FTPclient\FTPclient\Program.cs
文件 916 2008-12-13 16:15 FTPclient\FTPclient.sln
..A..H. 13312 2009-01-04 11:40 FTPclient\FTPclient.suo
文件 5612 2008-12-13 14:33 FTPserver\FTPserver\Properties\Resources.resx
文件 249 2008-12-13 14:33 FTPserver\FTPserver\Properties\Settings.settings
文件 1166 2008-12-13 14:33 FTPserver\FTPserver\Properties\AssemblyInfo.cs
文件 2872 2008-12-13 14:33 FTPserver\FTPserver\Properties\Resources.Designer.cs
文件 1092 2008-12-13 14:33 FTPserver\FTPserver\Properties\Settings.Designer.cs
文件 31131 2008-12-21 23:36 FTPserver\FTPserver\Form1.resx
文件 9618 2009-01-03 13:26 FTPserver\FTPserver\Form1.cs
............此处省略36个文件信息
- 上一篇:园区3D模型obj格式附加高德3d地图demo
- 下一篇:VC开发树列表
相关资源
- FTP课程设计(服务端+客户端)
- python实现的ftp自动上传、下载脚本
- 用Socket编程实现FTP
- tftp文件传输工具
- linux 网络实验 ftp程序
- 用Socket写的简易FTP服务器和客户端
- 基于C 的简易FTP客户端(带源码)
- 用IdFTPServer写的一个FTPServer程序
- FTP命令详解.doc
- 一个简单方便的服务端ftp搭建工具
- 20cn的ftp服务器超好用 简洁
- 最好用的FTP服务器
- CuteFTP8.0绿色破解版免安装无需序列号
- PSFTP.EXE 工具
- CuteFTP8.0简体中文破解版
- Wing FTP Server FTP服务器 v6.1.9
- 易语言绵绵FTP网络验证操作模块源码
- 免费的2014ftp暴力破解扫描工具可自动
- linux c下的ftp客户端和服务器端
- Notepad++ ftp/sftp 插件
- 8uftp安装
- Xshell6+Xftp6绿色_破解版解压后点击绿色
- ftp断点续传,ftp协议网络抓拍数据
- redhat vsftp
- Windows Server 2016 部署FTP服务器
- 1688图片采集工具 v3.0.0.4.zip
- Qt之FTP客户端
- 编译通过的Sipek.SoftPhone
- Linux课设实现ftp服务器和客户端
- Renci.SshNet.dll及其文档和实现SSH、SCP、
评论
共有 条评论