tags:

views:

476

answers:

1

Hey, basically I want to send files to my friends through a program, I have been looking on google but I can't seem to find anything.

I have found this but it is for C++ and i'm looking for C#

Any help would be appreciated,

Thanks.

+1  A: 

Oh boy.. Sooo many ways to do this :)

You could use one of the many WCF bindings for this purpose, but it requires .Net 3.5, which I don't think is a problem.

Here's an example using the very basic TCP-binding: http://www.codeproject.com/KB/WCF/wcffileserver.aspx

cwap
woops, commented on the wrong thing haha: Brilliant, i'll have a look thanks!
Crazyd22
I have my own site, do you know of any guides that is the same but using a remote server?
Crazyd22
Not sure I understand :) You have your own "site", as in, your own server? :) Http? Ftp? If so, why not just use a ftp-client? :P
cwap
Ftp and Http, You have the right idea with an ftp-client, but this gives them full access to my site. And I want to make it so they only have access to a certain folder.
Crazyd22
I have found exactly what I wanted, thank you
Crazyd22