Skip to content
This repository was archived by the owner on Nov 4, 2024. It is now read-only.
/ FTP-Project Public archive

A simple FTP-Project for coursework, featuring a basic server implemented in C and a client built with .NET 8 for straightforward file transfer.

License

Notifications You must be signed in to change notification settings

Renasci2021/FTP-Project

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 

Repository files navigation

FTP Implementation

A complete FTP server and client implementation project, including:

  • FTP server implemented in C
  • FTP client implemented in C# (.NET 8.0)

Features

  • Standard FTP protocol support
  • Active and passive mode data transfer
  • Basic file and directory operations
  • Cross-platform support

Project Structure

  • server/ - FTP Server

    • Implemented in C
    • Multi-client concurrent connections
    • See server/README.md for details
  • client/ - FTP Client

    • Implemented in C# (.NET 8.0)
    • Command-line interface
    • See client/README.md for details

Quick Start

  1. Build and start the server:
cd server/src
make
./server -port 10021 -root /path/to/root
  1. Build and run the client:
cd client/src
dotnet run -- -ip 127.0.0.1 -port 10021

License

MIT License - see LICENSE

About

A simple FTP-Project for coursework, featuring a basic server implemented in C and a client built with .NET 8 for straightforward file transfer.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published