利用第三方库实现sftp上传文件

该博客介绍了如何封装一个名为CSftp的类,利用libssh2_sftp库实现在Linux和Windows平台上进行SFTP文件上传。通过初始化连接、建立SSH会话、密码认证和创建SFTP会话,实现对远程服务器的文件创建和上传操作。
摘要由CSDN通过智能技术生成

封装一个类CSftp

upload_sftp.h

#define UPLOAD_SFTP_H
#include <QString>
#include <string>

#include "libssh2_sftp.h"

class CSftp
{
public:
    CSftp();
    ~CSftp();
    bool Init(QString remotePath ,QString ip = "10.11.22.34", int port = 22, QString user = "test", QString pwd = "test");
    bool Fini();
    bool CreateFile(const std::string fullPathFileName);
    bool CreateDir(const std::string fullPathName);
    bool UploadSftp(const char * data, const int size,const std::string fullPathName,const std::string fileName);
private:
    bool ConnectToHost();
    bool DisConnHost();
 private:
    int     m_nPort;
    int     m_sock;
    QString m_strIP;
    QString m_strUser;
    QString m_strPwd;
    QString m_remotePath;
    LIBSSH2_SESSION   *m_session;
    LIBSSH2_SFTP         *m_sftpSession;
    LIBSSH2_SFTP_HANDLE *m_sftpHandle;
};

#endif // UPLOAD_SFTP_H


upload_sftp.cpp

#include "upload_huainan.h"
#include <string>
#include "log.h"

#ifdef WIN32
#include <windows.h>
#include <winsock2.h>
#else
#include <sys/socket.h>
#include <netinet/in.h>
#include <unistd.h>
#include <arpa/inet.h>
#endif


CSftp::CSftp()
{
    m_session = NULL;
    m_sock = -1;
    m_sftpSession = NULL;
    m_sftpHandle = NULL;
}


CSftp::~CSftp()
{
    if (m_session != NULL)
    {
        libssh2_session_free(m_session);
        m_session = NULL;
    }
 

评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值