sending files

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi I want to send a file from one application instance over a network to
another, is there any easy way of doing this.
 
A simple solution could be to use System.IO.FileSystemWatcher on the
receiving application, and monitor either a network share or a folder on the
sender.

If you need transactional semantics (e.g. sender needs to know if the
receiver got it) you might be better off using System.Messaging.

Richard.
 
Back
Top