Howto implement SFTP with Qt/QNetworkAccessManager (C++)

前端 未结 4 1529
南方客
南方客 2021-02-05 22:43

I\'m new to Qt and I would like to implement FTP and SFTP support for my software. As I googled I discovered that there doesn\'t exist a sftp library for Qt but it should be pos

4条回答
  •  借酒劲吻你
    2021-02-05 23:44

    There is no support for SFTP in Qt SDK but Qt Creator implements SFTP.

    I have isolated the library that contains SSH and SFTP and I have created a new project named QSsh in Github. The aim of the project is to provide SSH and SFTP support for any Qt Application.

    I have written an example on how to upload a file using SFTP. Take a look at examples/SecureUploader/

    I hope it might be helpful

提交回复
热议问题