# computer-network **Repository Path**: fishandchips/computer-network ## Basic Information - **Project Name**: computer-network - **Description**: Fudan computer network project - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-11-10 - **Last Updated**: 2023-11-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # computer network pj-checkpoint-1 ## 简介 这是一个windows平台的VS2019项目,使用C简单实现了ftp协议的客户端和服务端。 ## 使用方式 首先运行ftpServer实例。然后运行ftpClient实例,输入服务器的ip和目标端口号(21),接着输入用户名和密码登录即可进入ftp服务。 服务端记录的用户名和密码存储在 `/tinyftp/ftpServer/.auth` 中。 ## 支持的命令 + get ( `get [remote_filename]` ) + put ( `put [local_filename]` ) + delete ( `delete [remote_filename]` ) + ls ( `ls` ) + cd ( `cd [remote_direcotry_name]` or `cd ..` ) + mkdir ( `mkdir [remote_direcotry_name]` ) + pwd ( `pwd` ) + quit ( `quit` )