What client-server library/framework on C# do you know for sending files? I need to create custom tool for uploading files to server; But i need something very simple. It will be very tiny utility;) I guess such library must wrap work with sockets because i cannot upload files using path like “\\ip\store”.
Thank you for any advice!!!
Any reason not to just use HTTP and
WebClient.UploadFile()in the client? The handling of the server side will depend on what you use to implement it, butHttpRequest.Filesis likely to be useful.