psftp.exe

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

Guest

Hi,
how can I call the psftp.exe from c# code? I need to get a file from another
computer...
Where can I find an example of this problem?

Thanks
 
Julia said:
how can I call the psftp.exe from c# code? I need to get a file from another
computer...
Where can I find an example of this problem?

Call psftp in the same way as calling any other executable - with
Process.Start. The Process class is in the System.Diagnostics
namespace, and I believe MSDN has examples of how to use it.
 
Back
Top