I wonder if there is any way to transfer files on a local network without using the C # Socket Class? and in terms of performance what is the fastest method of transferring files on a local network?
I wonder if there is any way to transfer files on a local network without using the C # Socket Class? and in terms of performance what is the fastest method of transferring files on a local network?
You can use File.Copy
File.Copy(@"C:\Pasta\Arquivo.txt", @"\192.168.25.10\Pasta-Compartilhada\Arquivo.txt");
Obviously it will only work if you have a shared folder and the user has access to the folder.