gpt4 book ai didi

node.js - 如何使用 Nodejs 的 npm 模块 ssh2 下载包含所有文件和文件夹的目录?

转载 作者:太空宇宙 更新时间:2023-11-03 23:59:54 30 4
gpt4 key购买 nike

我正在尝试通过 SFTP 将文件和文件夹下载到本地计算机。我正在使用以下代码,并且能够下载特定目录中的文件,但无法下载同一目录中的文件夹(及其各自的文件和文件夹递归)

 const folderDir=moment().format('MMM YYYY/D');
const remoteDir = '/var/www/html/view';
const remoteDir = 'Backup';

const download=(remoteDir,folderDir,FolderName)=>{

conn.on('ready', function() {

conn.sftp((err, sftp) => {
if (err) throw err;
sftp.readdir(remoteDir, (err, list) => {
if (err) throw err;
let count = list.length;
list.forEach(item => {
let remoteFile = remoteDir + '/' + item.filename;
var localFile = 'C:/Users/Desktop/'+folderDir+'/'+FolderName+'/' + item.filename;
//console.log('Downloading ' + remoteFile);
sftp.fastGet(remoteFile, localFile, (err) => {
if (err) throw err;
//console.log('Downloaded to ' + localFile);
count--;
if (count <= 0) {
conn.end();
}
});
});
});
});



}).connect({
host: '0.0.0.0',
port: 0,
username: 'test',
privateKey: require('fs').readFileSync('')
});

}

最佳答案

通过运行安装模块:

npm i ssh2-sftp-client

你可以这样做:

let fs = require('fs');
let Client = require('ssh2-sftp-client');
let sftp = new Client();


sftp.connect({
host: '',
port: '22',
username: 'your-username',
password: 'your-password'
}).then(() => {
// will return an array of objects with information about all files in the remote folder
return sftp.list('/');
}).then(async (data) => {
// data is the array of objects
len = data.length;
// x is one element of the array
await data.forEach(x => {
let remoteFilePath = '/' + x.name;
sftp.get(remoteFilePath).then((stream) => {
// save to local folder ftp
let file = './ftp/' + x.name;
fs.writeFile(file, stream, (err) => {
if (err) console.log(err);
});
});
});

}).catch((err) => {
console.log(err, 'catch error');
});

For more info on the ssh2-sftp-client module.

关于node.js - 如何使用 Nodejs 的 npm 模块 ssh2 下载包含所有文件和文件夹的目录?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55297097/

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