Accessing Over A NETWORK
-
How do I transfer files across a network? Does anybody know how? Please help! :) "To teach is to learn twice"
1. Create a share on the target system, and use two FileStreams (one for a file on the local system, the other for a file on the target system) to copy the data over. 2. Use sockets and have a sending application on the source system and a receiving application on the target system. Obviously the target app has to be installed and running before this will work. 3. Use .NET Remoting instead of sockets. Again the target app needs to be installed in the target system. I'm sure that there are other ways, but that'll get you started. Cheers, Julian Program Manager, C# This posting is provided "AS IS" with no warranties, and confers no rights.