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 n开发者_如何学JAVAeed 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, but HttpRequest.Files
is likely to be useful.
精彩评论