EasyFileTransfer 0.1.5

dotnet add package EasyFileTransfer --version 0.1.5
NuGet\Install-Package EasyFileTransfer -Version 0.1.5
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="EasyFileTransfer" Version="0.1.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add EasyFileTransfer --version 0.1.5
#r "nuget: EasyFileTransfer, 0.1.5"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install EasyFileTransfer as a Cake Addin
#addin nuget:?package=EasyFileTransfer&version=0.1.5

// Install EasyFileTransfer as a Cake Tool
#tool nuget:?package=EasyFileTransfer&version=0.1.5

Easy File Transfer

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

usage

  1. install nuget package:
	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
<img align = "center" src="Screenshots/Server.png" width=369 height=193> <img align = "center" src="Screenshots/Client.png" width=369 height=193>
Product Compatible and additional computed target framework versions.
.NET Framework net46 is compatible.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.1.5 804 3/21/2020

first release of this package.