CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 6 of 6

Thread: sftp in C#?

  1. #1
    Join Date
    Nov 2006
    Posts
    103

    sftp in C#?

    I need to be able to upload a file to a site by sftp.
    I found this great example on how to upload via ftp...
    http://www.codeguru.com/csharp/cshar...cle.php/c13163

    Anyone know if i can sftp a file in C#?

  2. #2
    Join Date
    Jun 2004
    Location
    Kashmir, India
    Posts
    6,808

    Re: sftp in C#?

    What does the article say? Doesn't it give you the code and a demo of how to SFTP in C# (.NET 2.0)?

  3. #3
    Join Date
    Nov 2006
    Posts
    103

    Re: sftp in C#?

    Did I mis-read it... I that that it was only an example of ftp not sftp.

  4. #4
    Join Date
    Jun 2004
    Location
    Kashmir, India
    Posts
    6,808

    Re: sftp in C#?

    Quote Originally Posted by JustSomeGuy View Post
    Did I mis-read it... I that that it was only an example of ftp not sftp.
    You didn't, I did

    Anyways, here is something that might be useful
    http://www.koders.com/csharp/fidF19F...618E9F0FF.aspx

    Looks like .NET does not have support for SSH FTP yet.

  5. #5
    Join Date
    Nov 2006
    Posts
    103

    Re: sftp in C#?

    Is sftp the same as ftp over a ssl?

  6. #6
    Join Date
    Jun 2004
    Location
    Kashmir, India
    Posts
    6,808

    Re: sftp in C#?

    Quote Originally Posted by JustSomeGuy View Post
    Is sftp the same as ftp over a ssl?
    No it is not. FTP over SSL is Secure FTP where SFTP is FTP with SSH.

    http://searchwarp.com/swa261185.htm

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured