# FilesTransfer **Repository Path**: znbgithub/FilesTransfer ## Basic Information - **Project Name**: FilesTransfer - **Description**: socket编程实现的基于tcp和udp的文件传输工具 - **Primary Language**: C++ - **License**: GPL-3.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-01-06 - **Last Updated**: 2022-01-06 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # FilesTransfer #### 介绍 socket编程实现的基于tcp和udp的文件传输工具 #### 项目结构 ```shell . ├── LICENSE ├── README.md ├── TCP │   ├── ClientMain.cpp │   ├── ServerMain.cpp │   ├── client.cpp │   ├── client.exe │   ├── client.h │   ├── server.cpp │   ├── server.exe │   ├── server.h │   ├── timer.cpp │   └── timer.h ├── UDP │   ├── ClientMain.cpp │   ├── ServerMain.cpp │   ├── client.cpp │   ├── client.exe │   ├── client.h │   ├── server.cpp │   ├── server.exe │   ├── server.h │   ├── timer.cpp │   └── timer.h └── test ├── client.cpp └── server.cpp 3 directories, 25 files ```