Skip to content

Jamalianpour/EasyFileTransfer

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 

Easy File Transfer

An easy way to transfer file with any size on network with tcp protocol.

usage

  1. install nuget package: Nuget
	Install-Package EasyFileTransfer -Version 0.1.5
  1. import the EasyFileTransfer library:
using EasyFileTransfer;
  1. for server at first you should start the EftServer:
EftServer server = new EftServer(saveTo, port);
System.Threading.Thread thread = new System.Threading.Thread(server.StartServer);
thread.Start();
  1. for client you can send file with this line:
EftClient.Send(Path/to/file, serverIP, serverPort);

it's finished. you can enjoy that. don't forget star this repository. :)

Screenshots

sample screenshots like this:

Server Client