I have a program in C# which i can move and copy files and directories by compress or by not compress between two path in a computer, but i want to do this between two computer. I want to use as target path of other computer’s driver. How can i do this?
Thanks for your helps,
Theres a couple of ways you could do this,
FTPServer on the other side using a FTP componentUNCPathSCPstyle system if the machine is a unix boxI would strongly recommend using a pre-existing protocol though, such as FTP, that way you can re-use libraries and it promotes inter-op with other programs.