# ftp **Repository Path**: japyvi/ftp ## Basic Information - **Project Name**: ftp - **Description**: 一个简单的linux gcc ftp client 客户端程序,适合嵌入式 - **Primary Language**: C - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 2 - **Forks**: 8 - **Created**: 2020-07-10 - **Last Updated**: 2025-05-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 一个简单的unix gcc ftp客户端程序 ## 编译 ``` make ``` ## 从ftp服务器下载文件 ``` ./ftpc get ftp://test:test@127.0.0.1:21/1.txt 1.txt ``` ## 上传文件到ftp服务器 ``` ./ftpc put ftp://test:test@127.0.0.1:21/1.txt 1.txt ```