gpt4 book ai didi

c++ - 如何使用 libssh 和 SFTP 在 C/C++ 中复制文件

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:41:27 29 4
gpt4 key购买 nike

我想将文件从客户端复制到远程服务器,但我不知道如何使用 libssh 库 SFTP API 来完成。

情况是:SSH session 打开了,SFTP session 也打开了,我可以用libssh的集成功能创建一个文件并从客户端写入到服务器。

我没有找到一种简单的方法来使用简单的函数将文件从客户端复制到服务器,例如 sftp_transfer(sourceFile(like c:\my document\hello world.txt),RemoteFile(/home/user/hello world.txt),right(read and write)) ?

根据我从教程中了解到的内容,它首先在远程位置(服务器)创建一个文件,然后使用这行代码打开该文件:

file = sftp_open(sftp, "/home/helloworld.txt",access_type,1);

之后在服务器上创建文件,然后用缓冲区写入这个创建的文件:

const char *helloworld = "Hello, World!\n";
int length = strlen(helloworld);
nwritten = sftp_write(file, helloworld, length);

我现在的问题是,如果我有一个文件,例如 .doc 文件,我想将该文件从 c:\mydocument\document.doc 传输/上传到远程服务器 /home/user/document.doc,我该怎么做?

如何将此文件放入 sftp_write() 函数中以像 helloworld in the sample function 一样发送它?

我可能在编程方面不够好,无法理解,但我真的很努力去理解它,而且我坚持了下来。

预先感谢您的帮助

下面是我用来测试的代码示例:

// Set variable for the communication
char buffer[256];
unsigned int nbytes;

//create a file to send by SFTP
int access_type = O_WRONLY | O_CREAT | O_TRUNC;
const char *helloworld = "Hello, World!\n";
int length = strlen(helloworld);

//Open a SFTP session
sftp = sftp_new(my_ssh_session);
if (sftp == NULL)
{
fprintf(stderr, "Error allocating SFTP session: %s\n",
ssh_get_error(my_ssh_session));
return SSH_ERROR;
}
// Initialize the SFTP session
rc = sftp_init(sftp);
if (rc != SSH_OK)
{
fprintf(stderr, "Error initializing SFTP session: %s.\n",
sftp_get_error(sftp));
sftp_free(sftp);
return rc;
}

//Open the file into the remote side
file = sftp_open(sftp, "/home/helloworld.txt",access_type,1);
if (file == NULL)
{
fprintf(stderr, "Can't open file for writing: %s\n",ssh_get_error(my_ssh_session));
return SSH_ERROR;
}

//Write the file created with what's into the buffer
nwritten = sftp_write(file, helloworld, length);
if (nwritten != length)
{
fprintf(stderr, "Can't write data to file: %s\n",
ssh_get_error(my_ssh_session));
sftp_close(file);
return SSH_ERROR;
}

最佳答案

以通常的方式打开文件(使用 C++ 的 fstream 或 C 的 stdio.h ),将其内容读取到缓冲区,并将缓冲区传递给 sftp_write

像这样:

ifstream fin("file.doc", ios::binary);
if (fin) {
fin.seekg(0, ios::end);
ios::pos_type bufsize = fin.tellg(); // get file size in bytes
fin.seekg(0); // rewind to beginning of file

std::vector<char> buf(bufsize); // allocate buffer
fin.read(buf.data(), bufsize); // read file contents into buffer

sftp_write(file, buf.data(), bufsize); // write buffer to remote file
}

请注意,这是一个非常简单的实现。您可能应该以附加模式打开远程文件,然后以 block 的形式写入数据,而不是发送单个巨大的数据 block 。

关于c++ - 如何使用 libssh 和 SFTP 在 C/C++ 中复制文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13691520/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com