我目前正在尝试从Debian计算机连接到SMB服务器。我已经从https://github.com/bchelli/node-smb2下载了SMB2客户端,我已经完成了示例
var SMB2 = require('smb2');
// create an SMB2 instance
var smb2Client = new SMB2({
share:'\\\\xxx/appfolder/\\'
, domain:'xxx'
, username:'teste'
, password:'teste'
});
smb2Client.exists('/Base_dados.mdb', function (err, exists) {
if (err) throw err;
console.log(exists ? "it's there" : "it's not there!");
});
我收到了当前错误
/home/sergio/Desktop/node-access/index.js:14
if (err) throw err;
^
如果有人知道如何解决这个问题,将不胜感激。
问候。
答案 0 :(得分:0)
问题是基于路径
'\\\\xxx\\app_folder'
修复了问题。