Edward83
Edward83

Reputation: 6686

Client Server library for uploading files on C#?

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!!!

Upvotes: 0

Views: 492

Answers (1)

Jon Skeet
Jon Skeet

Reputation: 1500015

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, but HttpRequest.Files is likely to be useful.

Upvotes: 2

Related Questions