登录 注册
当前位置:主页 > 资源下载 > 49 > 开发FTP服务器和FTP客户端的C#实现

开发FTP服务器和FTP客户端的C#实现

  • 更新:2024-06-24 08:19:32
  • 大小:81KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:FTP - 服务器应用
  • 格式:RAR

资源介绍

软件项目实践I ftp服务器开发 C# (FTPClient FTPServer) sing 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.IO; namespace FTPClient { public partial class Form1 : Form { TcpClient client; NetworkStream netStream; StreamReader sr; StreamWriter sw; public Form1() ..............