Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SFTP libraries for iPhone?

Are there any good SFTP libraries other than libssh2?? I'm especially looking for a library that is very easy to integrate and manage! As libssh2 is completely written in C, I find adding extensions to the existing code base rather difficult!

Thanks!!

like image 243
Mr.Anonymous Avatar asked Jan 22 '13 15:01

Mr.Anonymous


1 Answers

There are some Objective-C wrappers for libssh2 on GitHub:

  • NMSSH by Lejdborg (personally, this is my favourite. Super easy to use and well documented)
  • libssh2_sftp-Cocoa-wrapper by karelia
  • DLSFTPClient - by Leehro

And some more... These are the most popular ones.

like image 93
Attila H Avatar answered Oct 05 '22 18:10

Attila H