资源简介
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
//添加的命名空间引用
using System.Net;
using System.Net.Sockets;
using System.Threading;
using System.IO;
using System.Globalization;
namespace MyFtpServer
{
public partial class frmFtpServer : Form
{
TcpListener myTcpListener = null;
private Thread ListTh;
Dictionary users; //保存用户名和密码
public frmFtpServer()
{
InitializeComponent();
//为简单起见,此处假设已经有 admin 用户密码 admin
users = new Dictionary();
users.Add(“admin“ “admin“);
//设置默认主目录
tbxFtpRoo
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 91136 2012-05-08 16:20 FTP服务器\MyFtpServer\MyFtpServer\bin\Debug\MyFtpServer.exe
文件 42496 2012-05-08 16:20 FTP服务器\MyFtpServer\MyFtpServer\bin\Debug\MyFtpServer.pdb
文件 14328 2012-05-08 16:20 FTP服务器\MyFtpServer\MyFtpServer\bin\Debug\MyFtpServer.vshost.exe
文件 490 2012-05-08 16:20 FTP服务器\MyFtpServer\MyFtpServer\bin\Debug\MyFtpServer.vshost.exe.manifest
文件 23656 2012-05-08 16:20 FTP服务器\MyFtpServer\MyFtpServer\Form1.cs
文件 8212 2012-05-08 16:20 FTP服务器\MyFtpServer\MyFtpServer\Form1.Designer.cs
文件 107586 2012-05-08 16:20 FTP服务器\MyFtpServer\MyFtpServer\Form1.resx
文件 503 2012-05-08 16:20 FTP服务器\MyFtpServer\MyFtpServer\MyFtpServer.cs
文件 3849 2012-05-08 16:20 FTP服务器\MyFtpServer\MyFtpServer\MyFtpServer.csproj
文件 951 2012-05-08 16:20 FTP服务器\MyFtpServer\MyFtpServer\obj\Debug\MyFtpServer.csproj.FileListAbsolute.txt
文件 847 2012-05-08 16:20 FTP服务器\MyFtpServer\MyFtpServer\obj\Debug\MyFtpServer.csproj.GenerateResource.Cache
文件 91136 2012-05-08 16:20 FTP服务器\MyFtpServer\MyFtpServer\obj\Debug\MyFtpServer.exe
文件 68212 2012-05-08 16:20 FTP服务器\MyFtpServer\MyFtpServer\obj\Debug\MyFtpServer.frmFtpServer.resources
文件 42496 2012-05-08 16:20 FTP服务器\MyFtpServer\MyFtpServer\obj\Debug\MyFtpServer.pdb
文件 180 2012-05-08 16:20 FTP服务器\MyFtpServer\MyFtpServer\obj\Debug\MyFtpServer.Properties.Resources.resources
文件 1378 2012-05-08 16:20 FTP服务器\MyFtpServer\MyFtpServer\Properties\AssemblyInfo.cs
文件 2872 2012-05-08 16:20 FTP服务器\MyFtpServer\MyFtpServer\Properties\Resources.Designer.cs
文件 5612 2012-05-08 16:20 FTP服务器\MyFtpServer\MyFtpServer\Properties\Resources.resx
文件 1096 2012-05-08 16:20 FTP服务器\MyFtpServer\MyFtpServer\Properties\Settings.Designer.cs
文件 249 2012-05-08 16:20 FTP服务器\MyFtpServer\MyFtpServer\Properties\Settings.settings
文件 1023 2012-05-08 16:20 FTP服务器\MyFtpServer\MyFtpServer\User.cs
文件 1130 2012-05-08 16:20 FTP服务器\MyFtpServer\MyFtpServer\UserSession.cs
文件 923 2012-05-08 16:20 FTP服务器\MyFtpServer\MyFtpServer.sln
..A..H. 17920 2012-05-08 16:20 FTP服务器\MyFtpServer\MyFtpServer.suo
文件 131072 2012-05-08 16:20 FTP服务器\SelftpUpDownloader\SelftpUpDownloader\bin\Debug\SelftpUpDownloader.exe
文件 58880 2012-05-08 16:20 FTP服务器\SelftpUpDownloader\SelftpUpDownloader\bin\Debug\SelftpUpDownloader.pdb
文件 14328 2012-05-08 16:20 FTP服务器\SelftpUpDownloader\SelftpUpDownloader\bin\Debug\SelftpUpDownloader.vshost.exe
文件 490 2012-05-08 16:20 FTP服务器\SelftpUpDownloader\SelftpUpDownloader\bin\Debug\SelftpUpDownloader.vshost.exe.manifest
文件 3815 2012-05-08 16:20 FTP服务器\SelftpUpDownloader\SelftpUpDownloader\frmAboutbox.cs
文件 10775 2012-05-08 16:20 FTP服务器\SelftpUpDownloader\SelftpUpDownloader\frmAboutbox.Designer.cs
............此处省略43个文件信息
相关资源
- 疯子ftp上传工具源码传送数据到服务
- 猜数小游戏WCF网络编程技术(附服务
- 《C#版Ftp软件源码》
- Socket局域网聊天项目(客户端源码)
- xmpp在线聊天(IM,完整可运行,附服
- WebSockets客户端消息分发
- 定时读取ftp中txt日志并转存,判断后
- Remoting通信例程(附服务器端以及客户
- c# winform FTP连接服务器对文件进行操作
- Tcp通信示例源码(含服务器端以及客
- Restful C# 服务端篇之实现RestFul Servic
- Tcp通信(附服务器端以及客户端)
- NamedPipes-master(附客户端以及服务端)
- OPCCLIENT 一个用C#做的OPC客户端例子
- Debug 非常简单的C#客户端
- TLoveQUI 此聊天软件系统是模拟现今国
- opc C#编程实现的客户端与西门子OPC服
- HIKVideoDriver C#封装海康客户端
- ftp ftp定时自动上传文件到服务器上
- netmeeting 视频会议完整源码
- OPCClient c#写的opc客户端
- TCPFILE C#TCP多线程异步传输 C#开发的服
- RxjhGameServer 热血江湖11.0 服务端游戏端
- FTP实现文件的上传,,删除等功能
- C#下TCPIP的客户端和服务端的代码-wi
- C#+聊天软件客户端和服务器端.rar
- C#利用Socket实现客户端之间直接通信
- C# 一个简单的 Restful 服务端和 Restfu
- TCP/IP C#最简单例程,客户端,服务端
- C# 吃棋子网络 游戏 服务器端和客户端
评论
共有 条评论